1 19 20 package org.netbeans.modules.xslt.model; 21 22 import org.netbeans.modules.xslt.model.enums.Standalone; 23 import org.netbeans.modules.xslt.model.enums.TBoolean; 24 25 26 58 public interface Output extends QualifiedNameable, ContentElement, Declaration, 59 UseCharacterMapsSpec 60 { 61 String STANDALONE = "standalone"; 63 String UNDECLARE_PREFIXES = "undeclare-prefixes"; 65 String METHOD = "method"; 67 String INDENT = "indent"; 69 String ENCODING = "encoding"; 71 String BYTE_ORDER_MARK = "byte-order-mark"; 73 String CDATA_SECTION_ELEMENTS = "cdata-section-elements"; 75 String DOCTYPE_PUBLIC = "doctype-public"; 77 String DOCTYPE_SYSTEM = "doctype-system"; 79 String ESCAPE_URI_ATTRIBUTES = "escape-uri-attributes"; 81 String INCLUDE_CONTENT_TYPE = "include-content-type"; 83 String MEDIA_TYPE = "media-type"; 85 String NORMALIZATION_FORM = "normalization-form"; 87 String OMIT_XML_DECLARATION = "omit-xml-declaration"; 89 String VERSION = Stylesheet.VERSION; 90 91 94 Standalone getStandalone(); 95 96 100 void setStandalone( Standalone value ); 101 102 105 TBoolean getUndeclarePrefixes(); 106 107 111 void setUndeclarePrefixes( TBoolean value ); 112 113 116 TBoolean getIndent(); 117 118 122 void setIndent( TBoolean value ); 123 124 127 String getEncoding(); 128 129 133 void setEncoding( String encoding ); 134 } 135 | Popular Tags |