FileDocCategorySizeDatePackage
LocalizedContentDescriptorImpl.javaAPI DocGlassfish v2 API2955Fri May 04 22:31:22 BST 2007None

LocalizedContentDescriptorImpl

public class LocalizedContentDescriptorImpl extends Object implements com.sun.enterprise.deployment.web.LocalizedContentDescriptor, Serializable

Fields Summary
private String
url
private String
locale
Constructors Summary
public LocalizedContentDescriptorImpl()

    
public LocalizedContentDescriptorImpl(String locale, String url)

	this.locale = locale;
	this.url = url;
    
Methods Summary
public java.lang.StringgetLocale()

	if (this.locale == null) {
	    this.locale = "";
	}
	return this.locale;
    
public java.lang.StringgetUrl()

	if (this.url == null) {
	    this.url = "";
	}
	return this.url;
    
public voidprint(java.lang.StringBuffer toStringBuffer)

	toStringBuffer.append("LocalizedContent: ");
	toStringBuffer.append(" locale: ").append(locale);
	toStringBuffer.append(" url: ").append(url);
    
public voidsetLocale(java.lang.String locale)

	this.locale = locale;
    
public voidsetUrl(java.lang.String url)

	this.url = url;