Searched defs:fullName (Results 1 - 25 of 40) sorted by relevance

12

/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/
H A DJAnonymousClass.java47 public String fullName() { method in class:JAnonymousClass
48 return base.fullName();
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 DJNullType.java48 public String fullName() { return "null"; } method in class:JNullType
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 DJArrayClass.java54 public String fullName() { method in class:JArrayClass
55 return componentType.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 DJTypeVar.java53 public String fullName() { method in class:JTypeVar
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();
/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 DNParameterizedType.java66 public String fullName() { method in class:NParameterizedType
68 buf.append(rawType.fullName());
73 buf.append(args[i].fullName());
H A DNType.java76 String fullName(); method in interface:NType
H A DEagerNType.java71 public String fullName() { method in class:EagerNType
/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/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
H A DCArrayInfo.java92 public String fullName() { method in class:CArrayInfo
93 return itemType.getType().fullName()+"[]";
H A DCClassRef.java94 public String fullName() { method in class:CClassRef
/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...]
/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/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
/openjdk7/jdk/src/share/classes/java/security/
H A DIdentity.java341 if (this.fullName().equals(i.fullName())) {
381 String fullName() { method in class:Identity
/openjdk7/jdk/make/tools/reorder/tools/
H A Dremove_mcount.c112 const char *fullName; local
129 fullName = argv[1];
134 fd = open(fullName, O_RDWR);
136 fail("Unable to open ELF file %s.\n", fullName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJStaticJavaFile.java204 public String fullName() { method in class:JStaticJavaFile.JStaticClass
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DInlineAnnotationReaderImpl.java102 String fullName = m.getAnnotationType().getDeclaration().getQualifiedName();
104 getClass().getClassLoader().loadClass(fullName).asSubclass(Annotation.class);
165 protected String fullName(MethodDeclaration m) { method in class:InlineAnnotationReaderImpl

Completed in 146 milliseconds

12