Searched defs:primaryType (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DContentType.java46 private String primaryType; // primary type field in class:ContentType
52 * is parsed into its constituents: primaryType, subType
66 primaryType = tk.getValue();
91 return primaryType;
105 * the primaryType, the '/' character and the secondaryType.
110 return primaryType + '/' + subType;
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DMimeType.java96 primaryType = primary.toLowerCase();
116 code += primaryType.hashCode();
137 ((this.primaryType.equals(that.primaryType)) &&
161 primaryType = rawdata.substring(0,
168 primaryType = rawdata.substring(0,
183 if(!isValidToken(primaryType)) {
197 return primaryType;
253 return primaryType + "/" + subType;
270 return primaryType
354 private String primaryType; field in class:MimeType
[all...]
H A DDataFlavor.java263 * @exception NullPointerException if either <code>primaryType</code>,
266 private DataFlavor(String primaryType, String subType, MimeTypeParameterList params, Class representationClass, String humanPresentableName) { argument
268 if (primaryType == null) {
269 throw new NullPointerException("primaryType");
286 humanPresentableName = primaryType + "/" + subType;
290 mimeType = new MimeType(primaryType, subType, params);
1017 String primaryType = mimeType.getPrimaryType();
1018 if (primaryType != null) {
1019 total += primaryType.hashCode();
1026 if ("text".equals(primaryType)
[all...]
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DMimeType.java39 private String primaryType; field in class:MimeType
52 primaryType = "application";
78 primaryType = primary.toLowerCase(Locale.ENGLISH);
109 primaryType = rawdata.substring(0, slashIndex).trim().
116 primaryType = rawdata.substring(0, slashIndex).trim().
130 if (!isValidToken(primaryType))
144 return primaryType;
156 if (!isValidToken(primaryType))
158 primaryType = primary.toLowerCase(Locale.ENGLISH);
238 return primaryType
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DContentType.java45 private String primaryType; // primary type field in class:ContentType
57 * @param primaryType primary type
61 public ContentType(String primaryType, String subType, argument
63 this.primaryType = primaryType;
72 * is parsed into its constituents: primaryType, subType
86 primaryType = tk.getValue();
106 return new ContentType(primaryType,subType,list.copy());
114 return primaryType;
128 * the primaryType, th
162 setPrimaryType(String primaryType) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDataTransferer.java181 String primaryType = df.getPrimaryType();
182 if ("image".equals(primaryType)) {
229 String primaryType = df.getPrimaryType();
230 if ("image".equals(primaryType)) {
306 private boolean isMimeFormat(long format, String primaryType) { argument
315 if (primaryType.equals(df.getPrimaryType())) {
350 final String primaryType = df.getPrimaryType();
351 final String baseType = primaryType + "/" + df.getSubType();
356 if ("text".equals(primaryType)) {
357 value = primaryType
[all...]

Completed in 82 milliseconds