Lines Matching defs:type

149     // The SLP service type of this template.
223 * Returns the SLP service type for which this is the verifier.
225 * @return The SLP service type name.
341 String type = des.getValueType();
394 if (type.equals(JAVA_STRING_TYPE)) {
397 } else if (type.equals(JAVA_OPAQUE_TYPE)) {
407 // type. Also, if any allowed values, that attribute values
428 if (type.equals(JAVA_STRING_TYPE)) {
431 } else if (type.equals(JAVA_OPAQUE_TYPE)) {
595 // attribute type and flags,
622 // Initialize tokenizer for parsing service type name.
635 tk.wordChars((int)':', (int)':'); // for abstract and concrete type.
637 // Scheme name, type, flags, and boolean initialzers
864 // Just need to parse off the service type.
875 // Service type names are more heavily restricted.
901 // Set service type instance variable.
1232 // Parse the string for attribute id, type, and flags.
1255 // Parse the type and flags.
1582 // if type is opaque.
1681 // Parse the attribute's type and flags.
1691 // Parse the attribute's type.
1693 String type = parseWord(tk, baseLineno);
1695 checkAndAddType(type, attDesc, tk.lineno() + baseLineno);
1791 // Set up the tokenizer according to the type of the
1794 String type = attDesc.getValueType();
1796 if (type.equals(JAVA_STRING_TYPE) || type.equals(JAVA_OPAQUE_TYPE)) {
1798 } else if (type.equals(JAVA_INTEGER_TYPE)) {
1800 } else if (type.equals(JAVA_BOOLEAN_TYPE)) {
1829 Object reqVal = convertValue(type, reqTok, baseLineno);
1881 // Check the type and add it to the attribute descriptor.
1883 private void checkAndAddType(String type,
1890 if (type.equalsIgnoreCase(STRING_TYPE)) {
1893 } else if (type.equalsIgnoreCase(INTEGER_TYPE)) {
1896 } else if (type.equalsIgnoreCase(BOOLEAN_TYPE)) {
1899 } else if (type.equalsIgnoreCase(OPAQUE_TYPE)) {
1902 } else if (type.equalsIgnoreCase(KEYWORD_TYPE)) {
2044 private Object convertValue(String type,
2052 if (type.equals(JAVA_STRING_TYPE)) {
2065 } else if (type.equals(JAVA_INTEGER_TYPE)) {
2080 } else if (type.equals(JAVA_BOOLEAN_TYPE)) {
2101 } else if (type.equals(JAVA_OPAQUE_TYPE)) {