01: package net.refractions.udig.style.sld;
02:
03: /**
04: *
05: * An interface for a page in the SLD Editor. This interface
06: * is used primarily by the page's container, is pretty much
07: * identical to IPreferencePage.
08: * <p>
09: *
10: * </p>
11: * @author chorner
12: * @since 1.0.0
13: */
14: public interface IStyleEditorPage extends IEditorPage {
15:
16: public IStyleEditorPageContainer getContainer();
17:
18: }
|