Exemplo n.º 1
0
            public object next()
            {
                if (!hasNextCalled)
                {
                    hasNext();
                }
                hasNextCalled = false;

                try {
                    termEnum.next();
                } catch (IOException e) {
                    throw new java.lang.RuntimeException(e);
                }

                return((actualTerm != null) ? actualTerm.text() : null);
            }