Example #1
0
 /**
  * Constructor.
  *
  * @param langdef the default language which is used if no namespace is specified. Note: a page
  *     might have components from different languages.
  * @param id the identifier. See {@link #setId}.
  * @param title the title. See {@link #setTitle}.
  * @param style the CSS style. See {@link #setStyle}.
  */
 public PageDefinition(
     LanguageDefinition langdef, String id, String title, String style, Locator locator) {
   this(langdef, locator);
   setId(id);
   setTitle(title);
   setStyle(style);
 }