Package java.util

Examples of java.util.AbstractList$SubAbstractList


     * returns a list of candidate values in byte[]
     *
     * @param value The string to be operated on it. It is a byte[].
     */
    public static AbstractList buildWordlists(String value) {
        AbstractList words = Util.splits(value, ' ');
        int word_size = words.size();

        ArrayList result = new ArrayList(word_size);

        for (int i = 0; i < word_size; i++)
            result.add(((String) words.get(i)).getBytes());

        return result;
    }
View Full Code Here


     * DataSourceCollection when using the source tree - A Shape otherwise
     *
     * @return null if nothing selected or a list of selected objects
     */
    public AbstractList getSelectionList() {
        AbstractList res = null;
        if (isVisible(resources.getStringValue("shapes"))) {
           
            ShapePageModel pm = (ShapePageModel)shapesListModel.getSelectedPage();
            if (pm!= null){
                ShapeCreator sc = pm.getSelectedShapeCreator();
                if (sc != null){
                   
                    if (res == null) {
                        res = new ArrayList();
                    }
                   
                    res.add(sc);
               
            }
 
        }else if (isVisible(resources.getStringValue("sources"))) {
            Object o = filteredSourceTree.getSelectedSourceOrCollection();
            if (o != null) {
                if (res == null) {
                    res = new ArrayList();
                }
                res.add(o);
            }
        }
        return res;
    }
View Full Code Here

    return colorListener.currentColor;
  }

  static ShapeCreator getSelectedShape(){
    if(JSynoptic.gui!=null){
      AbstractList res=JSynoptic.gui.getSelectionList();
      if(res!=null){
        Iterator it=res.iterator();
        while(it.hasNext()){
          Object o=it.next();
          if(o instanceof ShapeCreator){
            return (ShapeCreator)o;
          }
View Full Code Here

 
  public static final DataFlavor SHAPE_FLAVOR=new DataFlavor(ShapeCreator.class, "SHAPE");
 
  static DataSource getSelectedSource(){
    if(JSynoptic.gui!=null){
      AbstractList res=JSynoptic.gui.getSelectionList();
      if(res!=null){
        Iterator it=res.iterator();
        while(it.hasNext()){
          Object o=it.next();
          if(o instanceof DataSource){
            return (DataSource)o;
          }
View Full Code Here

        return _locale;
    }

    public List getAvailableLanguages()
    {
        return new AbstractList()
        {
            public Object get(int index)
            {
                Locale locale = (Locale)AVAILABLE_LOCALES.get(index);
                String language = locale.getDisplayLanguage(locale);
View Full Code Here

         */
        public List getAliases(final boolean ident, final boolean inner) {
            if (_ids == null)
                return Collections.EMPTY_LIST;

            return new AbstractList() {
                public int size() {
                    return (ident && _idents != null) ? _idents.size()
                        : _ids.size();
                }

View Full Code Here

         */
        public List getAliases(final boolean ident, final boolean inner) {
            if (_ids == null)
                return Collections.EMPTY_LIST;

            return new AbstractList() {
                public int size() {
                    return (ident && _idents != null) ? _idents.size()
                        : _ids.size();
                }

View Full Code Here

        return _locale;
    }

    public List getAvailableLanguages()
    {
        return new AbstractList()
        {
            public Object get(int index)
            {
                Locale locale = (Locale)AVAILABLE_LOCALES.get(index);
                String language = locale.getDisplayLanguage(locale);
View Full Code Here

         */
        public List getAliases(final boolean ident, final boolean inner) {
            if (_ids == null)
                return Collections.EMPTY_LIST;

            return new AbstractList() {
                public int size() {
                    return (ident && _idents != null) ? _idents.size()
                        : _ids.size();
                }

View Full Code Here

         */
        public List getAliases(final boolean ident, final boolean inner) {
            if (_ids == null)
                return Collections.EMPTY_LIST;

            return new AbstractList() {
                public int size() {
                    return (ident && _idents != null) ? _idents.size()
                        : _ids.size();
                }

View Full Code Here

TOP

Related Classes of java.util.AbstractList$SubAbstractList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.