org.netbeans.jellytools.NewWebProjectNameLocationStepOperator Maven / Gradle / Ivy
The newest version!
/*
* 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 org.netbeans.jemmy.operators.JButtonOperator;
import org.netbeans.jemmy.operators.JLabelOperator;
import org.netbeans.jemmy.operators.JTextFieldOperator;
import org.netbeans.jemmy.operators.JCheckBoxOperator;
import javax.swing.JTextField;
/**
* Handle "Name And Location" panel of the New Web Project wizard.
* Components on the panel differs according to type of project selected.
* Web Application
*
* - Label and TextField Project Name:
txtProjectName().setText()
* - Label and TextField Project Location:
txtProjectLocation().setText()
* - Button for browsing Project Location:
btBrowseLocation().pushNoBlock()
* - Label and TextField Project Folder:
txtProjectFolder().getText()
* - CheckBox Set as Main Project:
cbSetAsMainProject().setSelected(true)
*
* Web Project with Existing Sources
*
* - Label and TextField Location:
txtProjectLocation().setText()
* - Button for browsing Location:
btBrowseLocation().pushNoBlock()
* - Button for browsing Project Folder:
btBrowseFolder().pushNoBlock()
*
* @author ms113234
*/
public class NewWebProjectNameLocationStepOperator extends NewProjectWizardOperator {
/** Components operators. */
//Web Application
private JLabelOperator _lblProjectName;
private JTextFieldOperator _txtProjectName;
private JLabelOperator _lblProjectLocation;
private JTextFieldOperator _txtProjectLocation;
private JButtonOperator _btBrowseProjectLocation;
private JLabelOperator _lblProjectFolder;
private JTextFieldOperator _txtProjectFolder;
private JCheckBoxOperator _cbSetAsMainProject;
//Web Project With Existing Sources
private JButtonOperator _btBrowseFolder;
private JLabelOperator _lblLocation;
private JTextFieldOperator _txtLocation;
/** Returns operator for label Project Name
* @return JLabelOperator
*/
public JLabelOperator lblProjectName() {
if(_lblProjectName == null) {
_lblProjectName = new JLabelOperator(this, "Project Name:");
}
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;
}
/** Sets given name in text field Project Name.
* @param name project name
*/
public void setProjectName(String name) {
txtProjectName().setText(name);
}
/** Returns operator for label Project Location
* @return JLabelOperator
*/
public JLabelOperator lblProjectLocation() {
if(_lblProjectLocation == null) {
_lblProjectLocation = new JLabelOperator(this, "Project Location:");
}
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;
}
/** Sets given project location
/** Returns operator for browse project location button
* @return JButtonOperator
*/
public JButtonOperator btBrowseProjectLocation() {
if ( _btBrowseProjectLocation==null ) {
_btBrowseProjectLocation = new JButtonOperator(this, "Browse...");
}
return _btBrowseProjectLocation;
}
/** Sets given location in text field Project Location.
* @param location project location
*/
public void setProjectLocation(String location) {
txtProjectLocation().setText(location);
}
/** Returns operator for label Location when creating project with
* existing sources.
* @return JLabelOperator
*/
public JLabelOperator lblLocation() {
if(_lblLocation == null) {
_lblLocation = new JLabelOperator(this, "Location:");
}
return _lblLocation;
}
/** Returns operator of project location text field
* @return JTextOperator
*/
public JTextFieldOperator txtLocation() {
if(_txtLocation == null) {
if (lblLocation().getLabelFor()!=null) {
_txtLocation = new JTextFieldOperator(
(JTextField)lblLocation().getLabelFor());
}
}
return _txtLocation;
}
/** Returns operator for browse project location button
* @return JButtonOperator
*/
public JButtonOperator btBrowseLocation() {
if ( _btBrowseProjectLocation==null ) {
_btBrowseProjectLocation = new JButtonOperator(this, "Browse...");
}
return _btBrowseProjectLocation;
}
/** Sets given location in text field Location.
* @param location Project With Existing Sources location
*/
public void setLocation(String location) {
txtLocation().setText(location);
}
/** Returns operator for label Project Folder
* @return JLabelOperator
*/
public JLabelOperator lblProjectFolder() {
if(_lblProjectFolder == null) {
_lblProjectFolder = new JLabelOperator(this, "Project Folder:");
}
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 folder button
* @return JButtonOperator
*/
public JButtonOperator btBrowseFolder() {
if ( _btBrowseFolder==null ) {
_btBrowseFolder = new JButtonOperator(this, "Browse:", 1);
}
return _btBrowseFolder;
}
/** Performs verification by accessing all sub-components */
@Override
public void verify() {
/* not used because this operator is intended both for web application
* and web application with existing sources.
lblProjectName();
txtProjectName();
lblProjectLocation();
txtProjectLocation();
lblProjectFolder();
txtProjectFolder();
btBrowseLocation();
cbSetAsMainProject();
btBrowseFolder();
*/
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy