Searched defs:next (Results 1 - 25 of 51) sorted by relevance

123

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/cache/
H A DPassivatedSessionInfo.java49 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 DCacheEntry.java48 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 DGenerator.java64 @Produces @Random int next() { method in class:Generator
/glassfish-3.1.2/web/web-core/src/main/java/org/glassfish/web/valve/
H A DTomcatValveAdapter.java59 // 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 DNamingContextBindingsEnumeration.java109 * Retrieves the next element in the enumeration.
111 public Binding next() method in class:NamingContextBindingsEnumeration
148 NamingEntry entry = iterator.next();
H A DNamingContextEnumeration.java99 * 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 DRecyclableNamingEnumeration.java105 * 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 DXMLStreamReaderFilter.java61 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 DEnumerationIterator.java63 public Object next() method in class:EnumerationIterator
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/
H A DInputReader.java90 * 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 DClientSecurityPipe.java86 public ClientSecurityPipe(Map props, Pipe next) { argument
88 super(next);
140 return next.process(request);
196 Packet response = next.process(info.getRequestPacket());
H A DClientSecurityTube.java93 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 DCommonServerSecurityPipe.java90 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 DCommonServerSecurityTube.java87 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 DBackupFilenameManager.java71 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 DQuotedStringTokenizer.java91 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 DJvmOptionsHelper.java83 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 DStaxParser.java82 * 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 DJDOQLParameterDeclarationParser.java68 * 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 DTransientContext.java789 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 DJkHandler.java83 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 DRequestItemIterator.java329 * @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 DValveBase.java138 * 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 DLogViewerResource.java163 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 DJSONUtil.java164 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...]

Completed in 280 milliseconds

123