11 lines
318 B
Java
Executable File
11 lines
318 B
Java
Executable File
package com.arsdigita.portalworkspace.ui;
|
|
|
|
public interface WorkspaceThemes {
|
|
/**
|
|
* Generates a stringbuffer describing the parameters for the implementing
|
|
* Theme Object. See the documentation at {@link WorkspaceTheme} for an
|
|
* explanation of building and using Themes.
|
|
*/
|
|
StringBuffer buildStyleBlock();
|
|
}
|