Package org.eclipse.core.variables

Examples of org.eclipse.core.variables.IValueVariableInitializer.initialize()


        if (className != null) {
          try {
            Object object = getConfigurationElement().createExecutableExtension("initializerClass"); //$NON-NLS-1$
            if (object instanceof IValueVariableInitializer) {
              IValueVariableInitializer initializer = (IValueVariableInitializer)object;
              initializer.initialize(this);
            } else {
              VariablesPlugin.logMessage(NLS.bind("Unable to initialize variable {0} - initializer must be an instance of IValueVariableInitializer.", new String[]{getName()}), null); //$NON-NLS-1$
            }
          } catch (CoreException e) {
            VariablesPlugin.logMessage(NLS.bind("Unable to initialize variable {0}",new String[]{getName()}), e); //$NON-NLS-1$
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.