Searched defs:getProperty (Results 101 - 125 of 141) sorted by relevance

123456

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/streaming/
H A DXMLStreamReaderFactory.java72 if(!getProperty(XMLStreamReaderFactory.class.getName()+".noPool"))
90 if (getProperty(XMLStreamReaderFactory.class.getName()+".woodstox")) {
430 private static Boolean getProperty(final String prop) { method in class:XMLStreamReaderFactory
434 String value = System.getProperty(prop);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java249 getProperty(QName.class, Endpoint.WSDL_SERVICE),
250 getProperty(QName.class, Endpoint.WSDL_PORT),
262 private <T> T getProperty(Class<T> type, String key) { method in class:EndpointImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamReaderFilter.java224 public Object getProperty(String name) throws IllegalArgumentException { method in class:XMLStreamReaderFilter
225 return reader.getProperty(name);
H A DXMLStreamWriterFilter.java127 public Object getProperty(String name) throws IllegalArgumentException { method in class:XMLStreamWriterFilter
128 return writer.getProperty(name);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DAbstractMarshallerImpl.java362 * Default implementation of the getProperty method handles
367 public Object getProperty( String name ) method in class:AbstractMarshallerImpl
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUCharacterProperty.java114 public final int getProperty(int ch) method in class:UCharacterProperty
177 return getProperty(codepoint);
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DTestLibrary.java130 public static String getProperty(String property, String defaultVal) { method in class:TestLibrary
136 return System.getProperty(prop, def);
176 out.println(property + " = " + getProperty(property, null));
196 * getProperty user.dir
197 * getProperty etc.
223 File dstDir = (new File(getProperty("user.dir", "."), codebase));
243 File srcDir = new File(getProperty("test.classes", "."));
496 return getExtraProperties().getProperty(property, defaultVal);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLStreamFilterImpl.java383 public Object getProperty(java.lang.String name) throws java.lang.IllegalArgumentException { method in class:XMLStreamFilterImpl
384 return fStreamReader.getProperty(name);
H A DXMLStreamReaderImpl.java270 fReaderInDefinedState = ((Boolean)fPropertyManager.getProperty(READER_IN_DEFINED_STATE)).booleanValue();
271 fBindNamespaces = ((Boolean)fPropertyManager.getProperty(XMLInputFactory.IS_NAMESPACE_AWARE)).booleanValue();
575 Boolean isValidating = (Boolean) fPropertyManager.getProperty(
1019 public Object getProperty(java.lang.String name) throws java.lang.IllegalArgumentException { method in class:XMLStreamReaderImpl
1027 return fPropertyManager.getProperty(name);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOMParser.java114 fErrorReporter = (XMLErrorReporter)config.getProperty(ERROR_REPORTER);
507 * Delegates to SchemaParsingConfig.getProperty.
511 public Object getProperty(String propertyId){ method in class:SchemaDOMParser
512 return config.getProperty(propertyId);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DSAXParserImpl.java307 public Object getProperty(String name) method in class:SAXParserImpl
309 return xmlReader.getProperty(name);
453 return (super.getProperty(SECURITY_MANAGER) != null);
491 fInitProperties.put(JAXP_SCHEMA_LANGUAGE, super.getProperty(JAXP_SCHEMA_LANGUAGE));
517 String val = (String)getProperty(JAXP_SCHEMA_LANGUAGE);
520 fInitProperties.put(JAXP_SCHEMA_SOURCE, super.getProperty(JAXP_SCHEMA_SOURCE));
534 fInitProperties.put(name, super.getProperty(name));
543 public synchronized Object getProperty(String name) method in class:SAXParserImpl.JAXPSAXParser
553 return super.getProperty(name);
626 return super.getProperty(nam
[all...]
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DParserAdapter.java287 * @see org.xml.sax.XMLReader#getProperty
289 public Object getProperty (String name) method in class:ParserAdapter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCClassInfo.java277 public CPropertyInfo getProperty(String name) { method in class:CClassInfo
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DElementInfoImpl.java339 public ElementPropertyInfo<T,C> getProperty() { method in class:ElementInfoImpl
H A DRuntimeClassInfoImpl.java175 public RuntimePropertyInfo getProperty(String name) { method in class:RuntimeClassInfoImpl
176 return (RuntimePropertyInfo)super.getProperty(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DMarshallerImpl.java458 public Object getProperty(String name) throws PropertyException { method in class:MarshallerImpl
474 return super.getProperty(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferProcessor.java150 public Object getProperty(String name) method in class:SAXBufferProcessor
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DConfig.java119 String osname = getProperty("os.name");
124 String osVersion = getProperty("os.version");
149 String tmp = getProperty("java.security.krb5.kdc");
156 defaultRealm = getProperty("java.security.krb5.realm");
698 String name = getProperty("java.security.krb5.conf");
700 name = getProperty("java.home") + File.separator +
732 String osname = getProperty("os.name");
779 private static String getProperty(String property) { method in class:Config
785 String userHome = getProperty("user.home");
1172 String osname = System.getProperty("o
[all...]
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java132 String vpFlag = getProperty("ViewportBackingStore");
235 String astr = getProperty(cmd + actionSuffix);
255 protected String getProperty(String key) { method in class:Notepad
256 return properties.getProperty(key);
340 String astr = getProperty(key + actionSuffix);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImage.java1138 public Object getProperty(String name, ImageObserver observer) { method in class:BufferedImage
1139 return getProperty(name);
1149 public Object getProperty(String name) { method in class:BufferedImage
1269 * {@link #getProperty(String) getProperty(String)}
1272 * names that <code>getProperty(String)</code> recognizes;
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java177 cname = System.getProperty("java.util.logging.manager");
695 if (manager.getProperty(pname + ".level") != null ||
696 manager.getProperty(pname + ".handlers") != null) {
788 String levs = getProperty(word + ".level");
1054 String cname = System.getProperty("java.util.logging.config.class");
1076 String fname = System.getProperty("java.util.logging.config.file");
1078 fname = System.getProperty("java.home");
1152 String hands = getProperty(propertyName);
1234 public String getProperty(String name) { method in class:LogManager
1235 return props.getProperty(nam
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSAXDocumentParser.java224 public Object getProperty(String name) method in class:SAXDocumentParser
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXDocumentSerializer.java551 public Object getProperty(java.lang.String name) method in class:StAXDocumentSerializer
555 return _manager.getProperty(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java314 public Object getProperty(String name) throws IllegalArgumentException { method in class:MtomCodec.MtomStreamWriterImpl
322 return super.getProperty(name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java631 public Object getProperty(String str) throws IllegalArgumentException { method in class:DOMStreamReader

Completed in 113 milliseconds

123456