Package org.eclipse.core.commands

Examples of org.eclipse.core.commands.AbstractParameterValueConverter


      /*
       * if the converter attribute was given, create a proxy
       * AbstractParameterValueConverter for the ParameterType, otherwise
       * null indicates there is no converter
       */
      final AbstractParameterValueConverter parameterValueConverter = (converter == null) ? null
          : new ParameterValueConverterProxy(configurationElement);

      final ParameterType parameterType = commandService
          .getParameterType(parameterTypeId);
      parameterType.define(type, parameterValueConverter);
View Full Code Here

TOP

Related Classes of org.eclipse.core.commands.AbstractParameterValueConverter

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.