Searched refs:Attributes (Results 1 - 25 of 343) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/java/util/jar/Attributes/
H A DName.java27 Attributes name.
31 import java.util.jar.Attributes;
36 Attributes.Name name = new Attributes.Name("");
H A DPutAndPutAll.java31 import java.util.jar.Attributes;
36 Attributes at = new Attributes();
38 at.put("this is not an Attributes.Name", "value");
39 throw new Exception("put should check for non Attributes.Name names");
44 at.put(new Attributes.Name("name"), new Integer(0));
51 throw new Exception("putAll should check for non Attributes maps");
H A DIterationOrder.java31 import java.util.jar.Attributes;
32 import java.util.jar.Attributes.Name;
35 static void checkOrder(Attributes.Name k0, String v0,
36 Attributes.Name k1, String v1,
37 Attributes.Name k2, String v2) {
38 Attributes x = new Attributes();
64 Attributes.Name k0 = Name.MANIFEST_VERSION;
65 Attributes.Name k1 = Name.MAIN_CLASS;
66 Attributes
[all...]
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/toolkit/dir/
H A DAttrFilter.java28 import javax.naming.directory.Attributes;
40 public boolean check(Attributes targetAttrs) throws NamingException;
H A DContainmentFilter.java41 private Attributes matchingAttrs;
43 public ContainmentFilter(Attributes match) {
47 public boolean check(Attributes attrs) throws NamingException {
54 public static boolean contains(Attributes superset, Attributes subset)
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/spi/
H A DDirStateFactory.java28 import javax.naming.directory.Attributes;
39 * by allowing an {@code Attributes} instance
119 * It will contain either a new {@code Attributes} object that is
144 Attributes inAttrs)
162 private Attributes attrs;
170 public Result(Object obj, Attributes outAttrs) {
185 public Attributes getAttributes() { return attrs; };
H A DDirObjectFactory.java30 import javax.naming.directory.Attributes;
41 * an {@code Attributes} instance
130 Attributes attrs)
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/directory/
H A DSearchResult.java50 private Attributes attrs;
70 public SearchResult(String name, Object obj, Attributes attrs) {
94 public SearchResult(String name, Object obj, Attributes attrs,
119 Object obj, Attributes attrs) {
144 Attributes attrs, boolean isRelative) {
155 public Attributes getAttributes() {
165 public void setAttributes(Attributes attrs) {
H A DDirContext.java116 *<h1>Operational Attributes</h1>
143 * An {@code Attributes}, {@code SearchControls}, or array object
149 * An {@code Attributes} object returned by any method is owned by
184 public Attributes getAttributes(Name name) throws NamingException;
196 public Attributes getAttributes(String name) throws NamingException;
211 * <p> See also <strong>Operational Attributes</strong> in the class
224 public Attributes getAttributes(Name name, String[] attrIds)
241 public Attributes getAttributes(String name, String[] attrIds)
325 public void modifyAttributes(Name name, int mod_op, Attributes attrs)
330 * See {@link #modifyAttributes(Name, int, Attributes)} fo
[all...]
H A DInitialDirContext.java135 public Attributes getAttributes(String name)
140 public Attributes getAttributes(String name, String[] attrIds)
145 public Attributes getAttributes(Name name)
150 public Attributes getAttributes(Name name, String[] attrIds)
155 public void modifyAttributes(String name, int mod_op, Attributes attrs)
160 public void modifyAttributes(Name name, int mod_op, Attributes attrs)
175 public void bind(String name, Object obj, Attributes attrs)
180 public void bind(Name name, Object obj, Attributes attrs)
185 public void rebind(String name, Object obj, Attributes attrs)
190 public void rebind(Name name, Object obj, Attributes attr
[all...]
/openjdk10/jdk/test/java/lang/instrument/executableJAR/
H A DExecJarWithAgent.java34 import java.util.jar.Attributes;
52 Attributes attrs = man.getMainAttributes();
53 attrs.put(Attributes.Name.MANIFEST_VERSION, "1.0.0");
54 attrs.put(Attributes.Name.MAIN_CLASS, "Main");
55 attrs.put(new Attributes.Name("Launcher-Agent-Class"), "Agent");
58 attrs.put(new Attributes.Name("Can-Redefine-Classes"), "true");
59 attrs.put(new Attributes.Name("Can-Retransform-Classes"), "true");
60 attrs.put(new Attributes.Name("Can-Set-Native-Method-Prefix"), "true");
61 attrs.put(new Attributes.Name("Boot-Class-Path"), "helper.jar");
86 Attributes attr
[all...]
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DLdapEntry.java29 import javax.naming.directory.Attributes;
40 Attributes attributes;
43 LdapEntry(String DN, Attributes attrs) {
48 LdapEntry(String DN, Attributes attrs, Vector<Control> respCtls) {
/openjdk10/jaxp/src/java.xml/share/classes/org/xml/sax/ext/
H A DAttributes2.java26 // Attributes2.java - extended Attributes
33 import org.xml.sax.Attributes;
38 * provided though {@link Attributes}.
63 public interface Attributes2 extends Attributes
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DEncodingAlgorithmAttributes.java30 import org.xml.sax.Attributes;
37 * Implementations shall ensure that the {@link Attributes#getValue(int)} method
47 public interface EncodingAlgorithmAttributes extends Attributes {
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DAttributesEx.java28 import org.xml.sax.Attributes;
31 * {@link Attributes} extension that allows attribute values
39 public interface AttributesEx extends Attributes {
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/
H A DForeignAttributes.java28 import org.xml.sax.Attributes;
41 public interface ForeignAttributes extends Attributes {
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/message/
H A DRootElementSniffer.java28 import org.xml.sax.Attributes;
41 private Attributes atts;
53 public void startElement(String uri, String localName, String qName, Attributes a) throws SAXException {
76 public Attributes getAttributes() {
81 private static final Attributes EMPTY_ATTRIBUTES = new AttributesImpl();
/openjdk10/jdk/test/javax/naming/module/src/person/org/example/person/
H A DPersonFactory.java49 Context nameCtx, Hashtable environment, Attributes inAttrs)
69 Hashtable environment, Attributes attributes) throws Exception {
80 private Attributes personToAttributes(Person person) {
87 private Person attributesToPerson(Attributes attrset)
90 Attributes attrs = (Attributes)attrset;
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DField.java41 attributes = new Attributes(cr);
46 Attributes attributes) {
64 public final Attributes attributes;
H A DMethod.java41 attributes = new Attributes(cr);
46 Attributes attributes) {
64 public final Attributes attributes;
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/
H A DAtomicDirContext.java52 protected abstract Attributes a_getAttributes(String name, String[] attrIds,
57 Attributes attrs,
67 Attributes attrs,
72 Attributes attrs,
77 Attributes attrs,
82 Attributes matchingAttributes,
126 protected Attributes a_getAttributes_nns(String name,
135 Attributes attrs,
149 Attributes attrs,
156 Attributes attr
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/
H A DSerializerTrace.java24 import org.xml.sax.Attributes;
124 public void fireGenerateEvent(int eventType, String name, Attributes atts);
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/parsers/
H A DMyDefaultHandler.java26 import org.xml.sax.Attributes;
40 public void startElement(String uri, String localName, String qName, Attributes attributes) {
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCEventReceiver.java28 import org.xml.sax.Attributes;
37 void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException;
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCEventReceiver.java28 import org.xml.sax.Attributes;
39 void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException;

Completed in 300 milliseconds

1234567891011>>