Searched refs:fullName (Results 1 - 25 of 103) sorted by relevance

12345

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJDirectClass.java40 private final String fullName; field in class:JDirectClass
42 public JDirectClass(JCodeModel _owner,String fullName) { argument
44 this.fullName = fullName;
48 int i = fullName.lastIndexOf('.');
49 if(i>=0) return fullName.substring(i+1);
50 return fullName;
53 public String fullName() { method in class:JDirectClass
54 return fullName;
58 int i = fullName
[all...]
H A DJAnonymousClass.java47 public String fullName() { method in class:JAnonymousClass
48 return base.fullName();
H A DJType.java75 public abstract String fullName(); method in class:JType
86 return fullName();
159 + '(' + fullName() + ')';
170 final String rhs = o.fullName();
171 boolean p = fullName().startsWith("java");
179 return fullName().compareTo(rhs);
H A DJPrimitiveType.java53 public String fullName() { method in class:JPrimitiveType
58 return fullName();
H A DJTypeWildcard.java59 public String fullName() { method in class:JTypeWildcard
60 return "? extends "+bound.fullName();
H A DJNarrowedClass.java93 public String fullName() { method in class:JNarrowedClass
95 buf.append(basis.fullName());
103 buf.append(c.fullName());
197 return fullName().equals(((JClass)obj).fullName());
202 return fullName().hashCode();
H A DJNullType.java48 public String fullName() { return "null"; } method in class:JNullType
H A DJArrayClass.java54 public String fullName() { method in class:JArrayClass
55 return componentType.fullName()+"[]";
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNameClassPair.java88 private String fullName = null; field in class:NameClassPair
255 if (fullName == null) {
258 return fullName;
270 * @param fullName The full name to use.
275 public void setNameInNamespace(String fullName) { argument
276 this.fullName = fullName;
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DDistributionPointName.java45 * fullName [0] GeneralNames,
88 // Only one of fullName and relativeName can be set
89 private GeneralNames fullName = null; field in class:DistributionPointName
98 * @param fullName the name for the distribution point.
99 * @exception IllegalArgumentException if <code>fullName</code> is null.
101 public DistributionPointName(GeneralNames fullName) { argument
103 if (fullName == null) {
104 throw new IllegalArgumentException("fullName must not be null");
106 this.fullName = fullName;
[all...]
H A DDistributionPoint.java47 * fullName [0] GeneralNames,
129 // only one of fullName and relativeName can be set
130 private GeneralNames fullName; field in class:DistributionPoint
145 * @param fullName the GeneralNames of the distribution point; may be null
151 public DistributionPoint(GeneralNames fullName, boolean[] reasonFlags, argument
153 if ((fullName == null) && (crlIssuer == null)) {
155 ("fullName and crlIssuer may not both be null");
157 this.fullName = fullName;
202 if ((fullName !
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DStubFactoryFactoryBase.java38 * @param fullName fully qualified name remote class
40 public String getStubName(String fullName) argument
42 return Utility.stubName( fullName ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DClassNameComparator.java42 return l.fullName().compareTo(r.fullName());
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncExtElementAvailable.java59 String fullName = m_arg0.execute(xctxt).str();
60 int indexOfNSSep = fullName.indexOf(':');
66 methName = fullName;
70 prefix = fullName.substring(0, indexOfNSSep);
74 methName= fullName.substring(indexOfNSSep + 1);
H A DFuncSystemProperty.java63 String fullName = m_arg0.execute(xctxt).str();
64 int indexOfNSSep = fullName.indexOf(':');
77 ? fullName.substring(0, indexOfNSSep) : "";
82 ? fullName : fullName.substring(indexOfNSSep + 1);
92 new Object[]{ fullName }); //"XSL Property not supported: "+fullName);
101 fullName }); //"Don't currently do anything with namespace "+namespace+" in property: "+fullName);
117 new Object[]{ fullName }); //"SecurityExceptio
[all...]
H A DFuncExtFunctionAvailable.java57 String fullName = m_arg0.execute(xctxt).str();
58 int indexOfNSSep = fullName.indexOf(':');
64 methName = fullName;
68 prefix = fullName.substring(0, indexOfNSSep);
72 methName = fullName.substring(indexOfNSSep + 1);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/nav/
H A DNClassByJClass.java54 public String fullName() { method in class:NClassByJClass
55 return clazz.fullName();
H A DNType.java76 String fullName(); method in interface:NType
H A DNParameterizedType.java66 public String fullName() { method in class:NParameterizedType
68 buf.append(rawType.fullName());
73 buf.append(args[i].fullName());
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKerberosPrincipal.java85 private transient String fullName; field in class:KerberosPrincipal
128 fullName = krb5Principal.toString();
172 fullName = krb5Principal.toString();
242 krb5Principal = new PrincipalName(fullName,nameType);
264 fullName = krb5Principal.toString() + NAME_REALM_SEPARATOR +
282 return fullName;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DValueEntry.java139 ParseException.nonAbstractParent2 (scanner, fullName (), e.fullName ());
141 ParseException.nonAbstractParent3 (scanner, fullName (), e.fullName ());
145 ParseException.alreadyDerived (scanner, e.fullName (), fullName ());
151 addDerivedFromName (e.fullName ());
159 addSupportName (e.fullName ());
222 String scopedName = fullName ();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCClassInfoParent.java41 String fullName(); method in interface:CClassInfoParent
71 public String fullName() { method in class:CClassInfoParent.Package
/openjdk7/jdk/src/share/classes/sun/font/
H A DPhysicalFont.java45 ((Font2D)o).fullName.equals(this.fullName));
49 return fullName.hashCode();
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFont.java95 fullName = name;
103 fullName = logicalFamilyName;
112 font.fullName =
113 fullName + (style == Font.BOLD ? "" : "-") + "Italic-Derived";
159 return "CFont { fullName: " + fullName +
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/annotation/
H A DAbstractInlineAnnotationReaderImpl.java76 annotation.getName(), fullName(getter),fullName(setter)),
101 protected abstract String fullName(M m); method in class:AbstractInlineAnnotationReaderImpl

Completed in 64 milliseconds

12345