Package com.subhajit.gui.form

Examples of com.subhajit.gui.form.TextAreaEditor


                .setLabel(
                    "Packages to be profiled (separated by commas)")
                .setName(ProfilerInputKey.PACKAGES.toString())
                .setTooltip("Packages").setValue(
                    bean.getPackagesOfInterest())
                .setValueEditor(new TextAreaEditor(","))
                .createBindingSpec(),
            new BindingSpec.BindingSpecBuilder()
                .setLabel("VM Arguments").setName(
                    ProfilerInputKey.VMARGS.toString())
                .setTooltip("VM Arguments").setValue(
                    bean.getVmargs()).setValueEditor(
                    new TextAreaEditor(" "))
                .createBindingSpec(),
            new BindingSpec.BindingSpecBuilder()
                .setLabel("Application arguments").setName(
                    ProfilerInputKey.ARGS.toString())
                .setTooltip("Application arguments").setValue(
                    bean.getCommandLineArguments())
                .setValueEditor(new TextAreaEditor(" "))
                .createBindingSpec() });
    if (values != null) {
      bean.setCommandLineArguments((String[]) values
          .get(ProfilerInputKey.ARGS.toString()));
      bean.setPackagesOfInterest((String[]) values
View Full Code Here

TOP

Related Classes of com.subhajit.gui.form.TextAreaEditor

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.