Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 101844
Collapse All | Expand All

(-)xml-batik/sources/org/apache/batik/ext/awt/image/rendered/LRUCache.java (-2 / +2 lines)
Lines 33-44 Link Here
33
         *            should be remembered so it can be returned by
33
         *            should be remembered so it can be returned by
34
         *            <tt>lruGet</tt>.  
34
         *            <tt>lruGet</tt>.  
35
         */
35
         */
36
		public  void    lruSet(LRUNode nde);
36
		public  void    lruSet(LRUCache.LRUNode nde);
37
        /**
37
        /**
38
         * Called to get the LRU node for this object.  Should return the
38
         * Called to get the LRU node for this object.  Should return the
39
         * node passed in to lruSet.
39
         * node passed in to lruSet.
40
         */
40
         */
41
		public  LRUNode lruGet();
41
		public  LRUCache.LRUNode lruGet();
42
        /**
42
        /**
43
         * Called to inform the object that it is no longer in the cache.
43
         * Called to inform the object that it is no longer in the cache.
44
         */
44
         */
(-)xml-batik/sources/org/apache/batik/script/rhino/RhinoInterpreter.java (-1 / +1 lines)
Lines 418-424 Link Here
418
        public Object get(ScriptableObject so) {
418
        public Object get(ScriptableObject so) {
419
            Context ctx = Context.getCurrentContext();
419
            Context ctx = Context.getCurrentContext();
420
            if (ctx == null ) return null;
420
            if (ctx == null ) return null;
421
            return ((ExtendedContext)ctx).getInterpreter().objects.get(name);
421
            return ((RhinoInterpreter.ExtendedContext)ctx).getInterpreter().objects.get(name);
422
        }
422
        }
423
    }
423
    }
424
    // The method to use for getting the value from the
424
    // The method to use for getting the value from the

Return to bug 101844