org.netbeans.jellytools.NewJavaProjectNameLocationStepOperator Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.jellytools;
import javax.swing.JTextField;
import org.netbeans.jemmy.operators.JButtonOperator;
import org.netbeans.jemmy.operators.JCheckBoxOperator;
import org.netbeans.jemmy.operators.JLabelOperator;
import org.netbeans.jemmy.operators.JTextFieldOperator;
/**
* Handle "Name And Location" panel of the New Project wizard.
* Components on the panel differs according to type of project selected.
* Java Application
*
* - Label and TextField Project Name:
txtProjectName().setText()
* - Label and TextField Project Location:
txtProjectLocation().setText()
* - Label and TextField Project Folder:
txtProjectFolder().getText()
* - Button for browsing Project Location:
btBrowseProjectLocation().pushNoBlock()
* - CheckBox Set as Main Project:
cbSetAsMainProject().setSelected(true)
* - CheckBox Create Main Class:
cbCreateMainClass().setSelected(true)
*
* Java Class Library
*
* - Label and TextField Project Name:
txtProjectName().setText()
* - Label and TextField Project Location:
txtProjectLocation().setText()
* - Label and TextField Project Folder:
txtProjectFolder().getText()
* - Button for browsing Project Location:
btBrowseProjectLocation().pushNoBlock()
*
* Java Project With Existing Ant script
*
* - Label and TextField Location:
txtLocation().setText()
* - Label and TextField Build Script:
txtBuildScript().setText()
* - Label and TextField Project Name:
txtProjectName().setText()
* - Label and TextField Project Folder:
txtProjectFolder().setText()
* - Button Browse... for browsing Location
btBrowseLocation().pushNoBlock()
* - Button Browse... for browsing Build Script
btBrowseBuildScript().pushNoBlock()
* - Button Browse... for browsing Project Folder
btBrowseProjectFolder().pushNoBlock()
* - CheckBox Set as Main Project
cbSetAsMainProject().setSelected(true)
*
* Java project With Existing Sources
*
* - Label and TextField Project Name:
txtProjectName().setText()
* - Label and TextField Project Folder:
txtProjectFolder().setText()
* - Button for browsing Project location:
btBrowseProjectLocation().pushNoBlock()
*
*
*/
public class NewJavaProjectNameLocationStepOperator extends NewProjectWizardOperator {
/** Components operators. */
//Java Class Library
private JLabelOperator _lblProjectName;
private JTextFieldOperator _txtProjectName;
private JLabelOperator _lblProjectLocation;
private JTextFieldOperator _txtProjectLocation;
private JLabelOperator _lblProjectFolder;
private JTextFieldOperator _txtProjectFolder;
private JButtonOperator _btBrowseLocation;
//Java Application
private JCheckBoxOperator _cbCreateMainClass;
private JTextFieldOperator _txtCreateMainClass;
//Java Project With Existing Ant script
private JLabelOperator _lblLocation;
private JTextFieldOperator _txtLocation;
private JLabelOperator _lblBuildScript;
private JTextFieldOperator _txtBuildScript;
private JButtonOperator _btBrowseBuildScript;
private JButtonOperator _btBrowseProjectFolder;
/** Returns operator for label Project Location
* @return JLabelOperator
*/
public JLabelOperator lblProjectLocation() {
if(_lblProjectLocation == null) {
_lblProjectLocation = new JLabelOperator(this,
Bundle.getStringTrimmed("org.netbeans.modules.java.j2seproject.ui.wizards.Bundle",
"LBL_NWP1_ProjectLocation_Label"));
}
return _lblProjectLocation;
}
/** Returns operator of project location text field
* @return JTextOperator
*/
public JTextFieldOperator txtProjectLocation() {
if(_txtProjectLocation == null) {
if ( lblProjectLocation().getLabelFor()!=null ) {
_txtProjectLocation = new JTextFieldOperator((JTextField)lblProjectLocation().getLabelFor());
}
}
return _txtProjectLocation;
}
/** Returns operator for label Project Name
* @return JLabelOperator
*/
public JLabelOperator lblProjectName() {
if(_lblProjectName == null) {
_lblProjectName = new JLabelOperator(this,
Bundle.getStringTrimmed("org.netbeans.modules.java.j2seproject.ui.wizards.Bundle",
"LBL_NWP1_ProjectName_Label"));
}
return _lblProjectName;
}
/** Returns operator of project name textfield
* @return JTextOperator
*/
public JTextFieldOperator txtProjectName() {
if(_txtProjectName == null) {
if ( lblProjectName().getLabelFor()!=null ) {
_txtProjectName = new JTextFieldOperator((JTextField)lblProjectName().getLabelFor());
}
}
return _txtProjectName;
}
/** Returns operator for label Project Folder
* @return JLabelOperator
*/
public JLabelOperator lblProjectFolder() {
if(_lblProjectFolder == null) {
_lblProjectFolder = new JLabelOperator(this,
Bundle.getStringTrimmed("org.netbeans.modules.java.j2seproject.ui.wizards.Bundle",
"LBL_NWP1_CreatedProjectFolder_Lablel"));
}
return _lblProjectFolder;
}
/** Returns operator of project folder textfield
* @return JTextOperator
*/
public JTextFieldOperator txtProjectFolder() {
if(_txtProjectFolder == null) {
if ( lblProjectFolder().getLabelFor()!=null ) {
_txtProjectFolder = new JTextFieldOperator((JTextField)lblProjectFolder().getLabelFor());
}
}
return _txtProjectFolder;
}
/** Returns operator for browse project location button
* @return JButtonOperator
*/
public JButtonOperator btBrowseProjectLocation() {
if ( _btBrowseLocation==null ) {
_btBrowseLocation = new JButtonOperator(this,Bundle.getStringTrimmed("org.netbeans.modules.java.j2seproject.ui.wizards.Bundle",
"LBL_NWP1_BrowseLocation_Button"));
}
return _btBrowseLocation;
}
/** Returns operator for browse location button in Java Project with existing
* Ant script wizard.
* @return JButtonOperator
*/
public JButtonOperator btBrowseLocation() {
if ( _btBrowseLocation==null ) {
_btBrowseLocation = new JButtonOperator(
this,
Bundle.getStringTrimmed("org.netbeans.modules.ant.freeform.ui.Bundle",
"BTN_BasicProjectInfoPanel_browseProjectLocation"),
2);
}
return _btBrowseLocation;
}
/** Returns operator for checkbox 'Create Main Class'
* @return JCheckBoxOperator
*/
public JCheckBoxOperator cbCreateMainClass() {
if ( _cbCreateMainClass==null ) {
_cbCreateMainClass = new JCheckBoxOperator(this,
Bundle.getStringTrimmed("org.netbeans.modules.java.j2seproject.ui.wizards.Bundle",
"LBL_createMainCheckBox"));
}
return _cbCreateMainClass;
}
/** Returns operator for text field 'Create Main Class'
* @return JTextFieldOperator
*/
public JTextFieldOperator txtCreateMainClass() {
if ( _txtCreateMainClass==null ) {
_txtCreateMainClass = new JTextFieldOperator(this, 3);
}
return _txtCreateMainClass;
}
/** Returns operator for label 'Location:' in Java Project with existing
* Ant script wizard.
* @return JLabelOperator
*/
public JLabelOperator lblLocation() {
if(_lblLocation == null) {
_lblLocation = new JLabelOperator(this,
Bundle.getStringTrimmed("org.netbeans.modules.ant.freeform.ui.Bundle",
"LBL_BasicProjectInfoPanel_jLabel6"));
}
return _lblLocation;
}
/** Returns operator of Location: text field in Java Project with existing
* Ant script wizard.
* @return JTextOperator
*/
public JTextFieldOperator txtLocation() {
if(_txtLocation == null) {
if ( lblLocation().getLabelFor()!=null ) {
_txtLocation = new JTextFieldOperator((JTextField)lblLocation().getLabelFor());
}
}
return _txtLocation;
}
/** Returns operator for label 'Build Script:' in Java Project with existing
* Ant script wizard.
* @return JLabelOperator
*/
public JLabelOperator lblBuildScript() {
if(_lblBuildScript == null) {
_lblBuildScript = new JLabelOperator(this,
Bundle.getStringTrimmed("org.netbeans.modules.ant.freeform.ui.Bundle",
"LBL_BasicProjectInfoPanel_jLabel2"));
}
return _lblBuildScript;
}
/** Returns operator of 'Build Script:' text field in Java Project with existing
* Ant script wizard.
* @return JTextOperator
*/
public JTextFieldOperator txtBuildScript() {
if(_txtBuildScript == null) {
if ( lblBuildScript().getLabelFor()!=null ) {
_txtBuildScript = new JTextFieldOperator((JTextField)lblBuildScript().getLabelFor());
}
}
return _txtBuildScript;
}
/** Returns operator for browse Build Script button in Java Project with existing
* Ant script wizard.
* @return JButtonOperator
*/
public JButtonOperator btBrowseBuildScript() {
if ( _btBrowseBuildScript==null ) {
_btBrowseBuildScript = new JButtonOperator(
this,
Bundle.getStringTrimmed("org.netbeans.modules.ant.freeform.ui.Bundle",
"BTN_BasicProjectInfoPanel_browseAntScript"),
0);
}
return _btBrowseBuildScript;
}
/** Returns operator for browse Project Folder button in Java Project with existing
* Ant script wizard.
* @return JButtonOperator
*/
public JButtonOperator btBrowseProjectFolder() {
if ( _btBrowseProjectFolder==null ) {
_btBrowseProjectFolder = new JButtonOperator(
this,
Bundle.getStringTrimmed("org.netbeans.modules.ant.freeform.ui.Bundle",
"BTN_BasicProjectInfoPanel_browseProjectFolder"),
1);
}
return _btBrowseProjectFolder;
}
/** Performs verification by accessing all sub-components */
@Override
public void verify() {
/*
lblProjectName();
txtProjectName();
lblProjectLocation();
txtProjectLocation();
lblProjectFolder();
txtProjectFolder();
btBrowseLocation();
cbSetAsMainProject();
cbCreateMainClass();
txtCreateMainClass();
lblLocation();
lblBuildScript();
txtLocation();
txtBuildScript();
btBrowseBuildScript();
btBrowseProjectFolder();
*/
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy