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

1234567891011

/openjdk7/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");
/openjdk7/jdk/src/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)
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DDirStateFactory.java28 import javax.naming.directory.Attributes;
39 * by allowing an <tt>Attributes</tt> instance
119 * It will contain either a new <tt>Attributes</tt> 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 <tt>Attributes</tt> instance
130 Attributes attrs)
/openjdk7/jdk/src/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 *<h4>Operational Attributes</h4>
143 * An <tt>Attributes</tt>, <tt>SearchControls</tt>, or array object
149 * An <tt>Attributes</tt> 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...]
/openjdk7/jdk/src/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 respCtls) {
/openjdk7/jaxp/src/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
/openjdk7/jaxws/src/share/jaxws_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 {
/openjdk7/jaxws/src/share/jaxws_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 {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DForeignAttributes.java28 import org.xml.sax.Attributes;
41 public interface ForeignAttributes extends Attributes {
/openjdk7/jaxws/src/share/jaxws_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();
/openjdk7/langtools/src/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;
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DAtomicDirContext.java53 protected abstract Attributes a_getAttributes(String name, String[] attrIds,
58 Attributes attrs,
68 Attributes attrs,
73 Attributes attrs,
78 Attributes attrs,
82 protected abstract NamingEnumeration a_search(Attributes matchingAttributes,
122 protected Attributes a_getAttributes_nns(String name,
131 Attributes attrs,
145 Attributes attrs,
152 Attributes attr
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DAttributes.java21 * $Id: Attributes.java,v 1.2.4.1 2005/09/06 10:53:04 pvedula Exp $
33 public final class Attributes implements AttributeList { class in inherits:AttributeList
37 public Attributes(DOM document, int element) { method in class:Attributes
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DSerializerTrace.java25 import org.xml.sax.Attributes;
125 public void fireGenerateEvent(int eventType, String name, Attributes atts);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCEventReceiver.java28 import org.xml.sax.Attributes;
37 void enterElement(String uri, String localName, String qname,Attributes atts) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_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;
/openjdk7/jdk/src/share/classes/com/sun/tracing/dtrace/
H A DArgsAttributes.java52 Attributes value();
H A DFunctionAttributes.java50 Attributes value();
H A DModuleAttributes.java50 Attributes value();

Completed in 364 milliseconds

1234567891011