alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.openide.explorer.propertysheet.editors;

import java.awt.*;
import java.beans.*;
import java.util.*;

import javax.swing.*;

//import org.openide.compiler.ExternalCompiler;

/** Outer class for editor over ExternalCompiler.ErrorExpression.
*/

public abstract class ExternalCompiler extends Object {
    private ExternalCompiler () {}
    /** Property editor for error expresions.
    */
    public static class ErrorExpressionEditor extends PropertyEditorSupport {
        /** shared list of error expressions in the system */
        private static Collection sharedList;

        static {
            sharedList = new HashSet (17);
            sharedList.add (org.openide.compiler.ExternalCompiler.JAVAC);
            sharedList.add (org.openide.compiler.ExternalCompiler.JIKES);
            sharedList.add (org.openide.compiler.ExternalCompiler.JVC);
        }

        /** list to use for error expressions */
        private java.util.Collection list;

        /** value to edit */
        private org.openide.compiler.ExternalCompiler.ErrorExpression value;

        /** Constructs property editor with shared array of registered expressions.
        */
        public ErrorExpressionEditor () {
            this (sharedList);
        }

        /** Constructs property editor given list of ErrorExpression. This list will be presented
        * to the user when the editor is used. Also the list is modified when user adds new
        * ErrorExpression.
        *
        * @param list modifiable collection of ExternalCompiler.ErrorExpression
        */
        public ErrorExpressionEditor (java.util.Collection list) {
            this.list = list;
        }


        public Object getValue() {
            return value;
        }

        public void setValue(Object value) {
            synchronized (this) {
                this.value = (org.openide.compiler.ExternalCompiler.ErrorExpression)value;
                if (value != null)
                    list.add (value);
            }
            firePropertyChange ();
        }

        public String getAsText() {
            if ( value == null )
                return "null";          // NOI18N
            return value.getName();
        }

        public void setAsText(String string) {
            org.openide.compiler.ExternalCompiler.ErrorExpression[] exprs =
                getExpressions();

            for (int i = 0; i < exprs.length; i++) {
                if (string.equals(exprs[i].getName())) {
                    setValue (exprs[i]);
                    break;
                }
            }
        }

        public String getJavaInitializationString() {
            return "new ExternalCompiler.ErrorExpression (" + // NOI18N
                   value.getName () + ", " + // NOI18N
                   value.getErrorExpression () + ", " + // NOI18N
                   value.getFilePos () + ", " + // NOI18N
                   value.getLinePos () + ", " + // NOI18N
                   value.getColumnPos () + ", " + // NOI18N
                   value.getDescriptionPos () +
                   ")"; // NOI18N
        }

        public String[] getTags() {
            org.openide.compiler.ExternalCompiler.ErrorExpression[] exprs =
                getExpressions();
            String[] tags = new String [exprs.length];
            for (int i = 0; i < exprs.length; i++) {
                tags[i] = exprs[i].getName();
            }

            return tags;
        }

        public boolean isPaintable() {
            return false;
        }

        public void paintValue(Graphics g, Rectangle rectangle) {
        }

        public boolean supportsCustomEditor() {
            return true;
        }

        public Component getCustomEditor() {
            return new ErrorExpressionPanel(this);
        }

        synchronized org.openide.compiler.ExternalCompiler.ErrorExpression[] getExpressions () {
            return
                (org.openide.compiler.ExternalCompiler.ErrorExpression[])list.toArray (
                    new org.openide.compiler.ExternalCompiler.ErrorExpression[list.size ()]
                );
        }

        java.util.Collection getExpressionsVector () {
            return list;
        }



    }


}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.