/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/ |
H A D | PassivatedSessionInfo.java | 49 public PassivatedSessionInfo next; field in class:PassivatedSessionInfo 52 PassivatedSessionInfo next) { 55 this.next = next; 51 PassivatedSessionInfo(long key, int lastAccessedAt, PassivatedSessionInfo next) argument
|
H A D | CacheEntry.java | 48 public CacheEntry next; field in class:CacheEntry 60 next = n; 67 next = n; 74 next = n; 83 next = n;
|
/glassfish-3.1.2/tests/quicklook/weld/numberguess/src/java/numberguess/ |
H A D | Generator.java | 64 @Produces @Random int next() { method in class:Generator
|
/glassfish-3.1.2/web/web-core/src/main/java/org/glassfish/web/valve/ |
H A D | TomcatValveAdapter.java | 59 // The next valve in the pipeline to be invoked 60 private Valve next = null; field in class:TomcatValveAdapter 79 return next; 83 this.next = valve;
|
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/ |
H A D | NamingContextBindingsEnumeration.java | 109 * Retrieves the next element in the enumeration. 111 public Binding next() method in class:NamingContextBindingsEnumeration 148 NamingEntry entry = iterator.next();
|
H A D | NamingContextEnumeration.java | 99 * Retrieves the next element in the enumeration. 101 public NameClassPair next() method in class:NamingContextEnumeration 130 NamingEntry entry = iterator.next();
|
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/ |
H A D | RecyclableNamingEnumeration.java | 105 * Retrieves the next element in the enumeration. 107 public E next() method in class:RecyclableNamingEnumeration
|
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/ |
H A D | XMLStreamReaderFilter.java | 61 public int next() throws XMLStreamException { method in class:XMLStreamReaderFilter 63 int r = super.next(); 86 int eventType = super.next(); 94 eventType = super.next(); 147 // next() is fine... 148 int r = super.next();
|
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/ |
H A D | EnumerationIterator.java | 63 public Object next() method in class:EnumerationIterator
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/ |
H A D | InputReader.java | 90 * Get the next character in the source string. 92 * @return The next character, or 0 if past the end of the source string. 94 public char next() throws InputException { method in class:InputReader 131 * Get the next char in the string, skipping whitespace. 137 char c = next(); 146 * Get the next n characters. 154 public String next(int n) throws InputException { method in class:InputReader 188 * Determine if the source string still contains characters that next() 193 char nextChar = next();
|
/glassfish-3.1.2/security/webservices.security/src/main/java/com/sun/enterprise/security/webservices/ |
H A D | ClientSecurityPipe.java | 86 public ClientSecurityPipe(Map props, Pipe next) { argument 88 super(next); 140 return next.process(request); 196 Packet response = next.process(info.getRequestPacket());
|
H A D | ClientSecurityTube.java | 93 public ClientSecurityTube(Map props, Tube next) { argument 95 super(next); 136 return next.process(request); 161 return doInvoke(super.next, info.getRequestPacket()); 192 return doInvoke(super.next, info.getRequestPacket());
|
H A D | CommonServerSecurityPipe.java | 90 public CommonServerSecurityPipe(Map props, final Pipe next, argument 92 super(next); 127 next.preDestroy(); 139 return next.process(request); 212 response = next.process(validatedRequest); 223 return next.process(validatedRequest);
|
H A D | CommonServerSecurityTube.java | 87 public CommonServerSecurityTube(Map props, final Tube next, argument 89 super(next); 114 next.preDestroy(); 122 return doInvoke(super.next, request); 176 return doInvoke(super.next, validatedRequest); 184 final Tube next = super.next; 189 return doInvoke(next, validatedRequest);
|
/glassfish-3.1.2/admin/backup/src/main/java/com/sun/enterprise/backup/ |
H A D | BackupFilenameManager.java | 71 File next() throws BackupException { method in class:BackupFilenameManager 118 files.add(it.next().zip); 216 File fnew = mgr.next();
|
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/ |
H A D | QuotedStringTokenizer.java | 91 while ((c = iterator.next()) != CharIterator.EOF) 99 char next = iterator.peekNext(); 100 if (next == CharIterator.EOF || (isDelimiter(next) && !bQuote)) 129 while ((c = it.next()) != CharIterator.EOF) 131 char next = it.peekNext(); 136 if (next == CharIterator.EOF || (isDelimiter(next) && !bQuote)) 139 else if (next == CharIterator.EOF && bQuote) //eg :- "\" " 161 char next() method in class:QuotedStringTokenizer.CharIterator [all...] |
H A D | JvmOptionsHelper.java | 83 JvmOptionsElement next = new JvmOptionsElement(options[i]); 84 current.setNext(next); 85 current = next; 134 current = current.next(); 180 current = current.next(); 199 current = current.next(); 211 s[i] = (String)it.next(); 238 * and then invokes the next in the chain. 260 private JvmOptionsElement next; field in class:JvmOptionsElement 305 next 326 JvmOptionsElement next() { return next; } method in class:JvmOptionsElement [all...] |
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/xml/ |
H A D | StaxParser.java | 82 * The same as calling XmlStreamReader.next() except that we throw a special 88 protected int next() throws XMLStreamException, EndDocumentException { method in class:StaxParser 89 int event = parser.next(); 150 * Skip to the next START_ELEMENT 155 while (next() != START_ELEMENT) 191 int event = next();
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/jqlc/ |
H A D | JDOQLParameterDeclarationParser.java | 68 * the Iterator's next method returns Strings. 113 * Iterator over the parameter types. The next method returns the type 114 * of the next parameter represented as String. 125 * root. The first child is the type, the next child is the name of 145 * Returns the next element in the iteration. For this Iterator it 146 * returns the String representation of the type of the next 148 * @return the type of the next parameter declaration. 151 public Object next() method in class:JDOQLParameterDeclarationParser.ParameterTypeIterator 162 "jqlc.jdoqlparameterdeclarationparser.next.wrongtoken", //NOI18N 168 // advance current ast node to next paramete [all...] |
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/ |
H A D | TransientContext.java | 789 String name = iter.next(); 798 public T next() throws NamingException { method in class:TransientContext.RepNames 839 public T next() throws NamingException { method in class:TransientContext.RepBindings
|
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/core/ |
H A D | JkHandler.java | 83 protected JkHandler next; field in class:JkHandler 128 next=h; 137 if( next!=null) 138 nextName=next.getName();
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/ |
H A D | RequestItemIterator.java | 329 * @return true, if an next item was found, otherwise false. 578 * Returns the next available {@link FileItemStream}. 584 public RequestItem next() throws ServletException, IOException { method in class:RequestItemIterator
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/ |
H A D | ValveBase.java | 138 * The next Valve in the pipeline this Valve is a component of. 140 protected Valve next = null; field in class:ValveBase 202 * Return the next Valve in this pipeline, or <code>null</code> if this 207 return next; 214 * @param valve The new next valve 218 this.next = valve;
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/custom/ |
H A D | LogViewerResource.java | 163 URI next = uriBuilder.build(); 164 rp.header("X-Text-Append-Next", next); 226 * the next write operation. 291 buf = buf.next; 321 // read into the next buffer 341 private ByteBuf next; field in class:LogViewerResource.ByteBuf 345 assert previous.next == null; 346 previous.next = this;
|
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/ |
H A D | JSONUtil.java | 164 ch = it.next(); 201 key = it.next().toString(); 225 builder.append(javaToJSON(it.next().toString(), 1)); 228 builder.append(javaToJSON(it.next(), depth-1)); 246 methodName = it.next(); 303 char ch = json.next(); 471 char ch = json.next(); 474 ch = json.next(); 494 + json.next() + json.next() 637 char next() { method in class:JSONUtil.JsonChars [all...] |