1 19 20 package org.netbeans.modules.xml.schema.model; 21 22 import java.io.IOException ; 23 import org.w3c.dom.Element ; 24 25 29 public interface AppInfo extends SchemaComponent { 30 public static final String SOURCE_PROPERTY = "source"; 31 public static final String CONTENT_PROPERTY = "content"; 32 33 36 String getURI(); 37 38 41 void setURI(String uri); 42 43 46 Element getAppInfoElement(); 47 48 51 void setAppInfoElement(Element content); 52 53 56 String getContentFragment(); 57 58 65 void setContentFragment(String text) throws IOException ; 66 } 67 | Popular Tags |