Searched refs:setAttribute (Results 1 - 25 of 152) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageMetadata.java149 node.setAttribute("imageLeftPosition",
151 node.setAttribute("imageTopPosition",
153 node.setAttribute("imageWidth", Integer.toString(imageWidth));
154 node.setAttribute("imageHeight", Integer.toString(imageHeight));
155 node.setAttribute("interlaceFlag",
163 node.setAttribute("sizeOfLocalColorTable",
165 node.setAttribute("sortFlag",
171 entry.setAttribute("index", Integer.toString(i));
175 entry.setAttribute("red", Integer.toString(r));
176 entry.setAttribute("gree
[all...]
H A DGIFStreamMetadata.java104 node.setAttribute("value", version);
113 node.setAttribute("logicalScreenWidth",
116 node.setAttribute("logicalScreenHeight",
120 node.setAttribute("colorResolution",
123 node.setAttribute("pixelAspectRatio",
130 node.setAttribute("sizeOfGlobalColorTable",
132 node.setAttribute("backgroundColorIndex",
134 node.setAttribute("sortFlag",
140 entry.setAttribute("index", Integer.toString(i));
144 entry.setAttribute("re
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGMetadata.java475 IHDR_node.setAttribute("width", Integer.toString(IHDR_width));
476 IHDR_node.setAttribute("height", Integer.toString(IHDR_height));
477 IHDR_node.setAttribute("bitDepth",
479 IHDR_node.setAttribute("colorType",
482 IHDR_node.setAttribute("compressionMethod",
485 IHDR_node.setAttribute("filterMethod",
487 IHDR_node.setAttribute("interlaceMethod",
498 entry.setAttribute("index", Integer.toString(i));
499 entry.setAttribute("red",
501 entry.setAttribute("gree
[all...]
/openjdk7/jdk/test/javax/script/
H A DPluggableContextTest.java37 ctx.setAttribute("x", "hello", MyContext.APP_SCOPE);
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DDynamicFileAttributeView.java40 void setAttribute(String attribute, Object value) throws IOException; method in interface:DynamicFileAttributeView
H A DAbstractFileSystemProvider.java67 public final void setAttribute(Path file, method in class:AbstractFileSystemProvider
79 view.setAttribute(s[1], value);
/openjdk7/jdk/src/share/classes/javax/management/
H A DDynamicMBean.java50 * @see #setAttribute
68 public void setAttribute(Attribute attribute) throws AttributeNotFoundException, method in interface:DynamicMBean
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DItxtUtf8Test.java160 entry.setAttribute("keyword", "verbatim");
161 entry.setAttribute("compressionFlag", "false");
162 entry.setAttribute("compressionMethod", "0");
163 entry.setAttribute("languageTag", "x-circled");
164 entry.setAttribute("translatedKeyword", VERBATIM);
165 entry.setAttribute("text", TEXT);
167 entry.setAttribute("keyword", "compressed");
168 entry.setAttribute("compressionFlag", "true");
169 entry.setAttribute("compressionMethod", "0");
170 entry.setAttribute("languageTa
[all...]
H A DMergeStdCommentTest.java60 entry.setAttribute("keyword", "Comment");
61 entry.setAttribute("value", "Some demo comment");
H A DITXtTest.java101 iTXtEntry.setAttribute("keyword", keyword);
102 iTXtEntry.setAttribute("compressionFlag",
104 iTXtEntry.setAttribute("compressionMethod",
106 iTXtEntry.setAttribute("languageTag", language);
107 iTXtEntry.setAttribute("translatedKeyword",
109 iTXtEntry.setAttribute("text", text);
/openjdk7/jdk/test/java/nio/file/Files/
H A DFileAttributes.java37 * Exercises getAttribute/setAttribute/readAttributes methods.
61 // Exercise getAttribute/setAttribute/readAttributes on basic attributes
76 // setAttribute
78 Files.setAttribute(file, "basic:lastModifiedTime", FileTime.fromMillis(0L));
81 Files.setAttribute(file, "lastModifiedTime", modTime);
99 // Exercise getAttribute/setAttribute/readAttributes on posix attributes
110 // setAttribute
116 Files.setAttribute(file, "posix:permissions", newPerms);
118 Files.setAttribute(file, "posix:permissions", orig);
120 Files.setAttribute(fil
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptionProperty.java96 void setAttribute(String attribute, String value); method in interface:EncryptionProperty
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DSOFMarkerSegment.java112 node.setAttribute("process", Integer.toString(tag-JPEG.SOF0));
113 node.setAttribute("samplePrecision",
115 node.setAttribute("numLines",
117 node.setAttribute("samplesPerLine",
119 node.setAttribute("numFrameComponents",
261 node.setAttribute("componentId",
263 node.setAttribute("HsamplingFactor",
265 node.setAttribute("VsamplingFactor",
267 node.setAttribute("QtableSelector",
H A DSOSMarkerSegment.java108 node.setAttribute("numScanComponents",
110 node.setAttribute("startSpectralSelection",
112 node.setAttribute("endSpectralSelection",
114 node.setAttribute("approxHigh",
116 node.setAttribute("approxLow",
222 node.setAttribute("componentSelector",
224 node.setAttribute("dcHuffTable",
226 node.setAttribute("acHuffTable",
H A DAdobeMarkerSegment.java76 node.setAttribute("version", Integer.toString(version));
77 node.setAttribute("flags0", Integer.toString(flags0));
78 node.setAttribute("flags1", Integer.toString(flags1));
79 node.setAttribute("transform", Integer.toString(transform));
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPMetadata.java198 subNode.setAttribute("value", "" + numComps);
202 subNode1.setAttribute("index", ""+i);
203 subNode1.setAttribute("red", "" + palette[j++]);
204 subNode1.setAttribute("green", "" + palette[j++]);
205 subNode1.setAttribute("blue", "" + palette[j++]);
207 subNode1.setAttribute("alpha", "" + palette[j++]);
222 subNode.setAttribute("value", compressionTypeNames[compression]);
239 subNode.setAttribute("value", bits);
250 subNode.setAttribute("value", "" + ratio);
254 subNode.setAttribute("valu
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DMutableAttrListImpl.java93 this.setAttribute(index, uri, localName, qName, type, value);
120 this.setAttribute(index, uri, localName, qname, atts.getType(i),
H A DHashtree2Node.java110 node.setAttribute("key", keyStr);
117 node.setAttribute("key", keyStr);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpExchangeImpl.java105 public void setAttribute (String name, Object value) { method in class:HttpExchangeImpl
106 impl.setAttribute (name, value);
H A DHttpsExchangeImpl.java109 public void setAttribute (String name, Object value) { method in class:HttpsExchangeImpl
110 impl.setAttribute (name, value);
/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DXmlSupport.java103 preferences.setAttribute("EXTERNAL_XML_VERSION", EXTERNAL_XML_VERSION);
106 xmlRoot.setAttribute("type", (p.isUserNode() ? "user" : "system"));
119 e.setAttribute("name", ((Preferences)ancestors.get(i)).name());
160 entry.setAttribute("key", keys[i]);
162 entry.setAttribute("value", prefs.get(keys[i], null));
179 xmlKid.setAttribute("name", kidNames[i]);
265 tf.setAttribute("indent-number", new Integer(2));
345 xmlMap.setAttribute("MAP_XML_VERSION", MAP_XML_VERSION);
351 xe.setAttribute("key", (String) e.getKey());
352 xe.setAttribute("valu
[all...]
/openjdk7/jdk/src/share/classes/javax/script/
H A DScriptContext.java60 * <code>setAttribute</code> methods must map to the <code>get</code> and
97 public void setAttribute(String name, Object value, int scope); method in interface:ScriptContext
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpExchange.java238 public abstract void setAttribute (String name, Object value) ; method in class:HttpExchange
/openjdk7/jdk/src/share/classes/sun/management/
H A DLockDataConverter.java92 setAttribute(new Attribute("LockInfo", cd));
101 setAttribute(new Attribute("LockedSynchronizers", cd));
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanSupport.java75 * route getAttribute, setAttribute, and invoke to the appropriate
223 public final void setAttribute(Attribute attribute) method in class:MBeanSupport
230 perInterface.setAttribute(resource, name, value, getCookie());
239 setAttribute(attr);

Completed in 171 milliseconds

1234567