001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.modules.visualweb.gravy.model.project;
043:
044: import org.netbeans.modules.visualweb.gravy.ProjectNavigatorOperator;
045: import org.netbeans.modules.visualweb.gravy.TestUtils;
046:
047: import org.netbeans.jemmy.operators.Operator;
048: import org.netbeans.jemmy.JemmyException;
049:
050: import javax.swing.tree.TreePath;
051:
052: /**
053: * Common class for all source files.
054: */
055:
056: abstract class SourceFile {
057:
058: private final String popupOpen = "Open";
059:
060: TreePath path;
061: String name;
062:
063: /**
064: * Creates a new instance of web page.
065: * @param path Path to web page in project.
066: * @param name Name of web page.
067: */
068: SourceFile(TreePath path, String name) {
069: this .path = path;
070: this .name = name;
071: }
072:
073: /**
074: * Open source file.
075: */
076: public void open() {
077: try {
078: ProjectNavigatorOperator prjNav = ProjectNavigatorOperator
079: .showProjectNavigator();
080: TestUtils.wait(500);
081: String full_path = this .path.toString().substring(1,
082: this .path.toString().length() - 1)
083: + "|" + this .name;
084: prjNav.pressPopupItemOnNode(full_path, popupOpen,
085: new Operator.DefaultStringComparator(true, true));
086: } catch (Exception e) {
087: throw new JemmyException("Source file can't be opened!", e);
088: }
089: TestUtils.wait(500);
090: }
091:
092: /**
093: * Close source file.
094: */
095: public void close() {
096: }
097:
098: /**
099: * Gets text from the currently opened source file.
100: * @return String representing whole content of the source fiole.
101: * (including new line characters)
102: */
103: public abstract String getText();
104:
105: /**
106: * Gets text from specified line.
107: * @param lineNumber Number of line.
108: * @return String representing content of the line.
109: */
110: public abstract String getText(int lineNumber);
111:
112: /**
113: * Checks if source file contains text specified as parameter text.
114: * @param text Text to compare to.
115: * @return true if text was found, false otherwise.
116: */
117: public abstract boolean contains(String text);
118:
119: /**
120: * Replaces first occurence of oldText by newText.
121: * @param oldText Text to be replaced.
122: * @param newText Text to write instead.
123: */
124: public abstract void replace(String oldText, String newText);
125:
126: /**
127: * Replaced index-th occurence of oldText by newText.
128: * @param oldText Text to be replaced
129: * @param newText Text to write instead
130: * @param index Index of oldText occurence.
131: */
132: public abstract void replace(String oldText, String newText,
133: int index);
134:
135: /**
136: * Insert text to current position.
137: * @param text String to be inserted.
138: */
139: public abstract void insert(String text);
140:
141: /**
142: * Inserts text to position specified by line number and column.
143: * @param text String to be inserted.
144: * @param lineNumber Number of line.
145: * @param column Column position.
146: */
147: public abstract void insert(String text, int lineNumber, int column);
148:
149: /**
150: * Deletes given number of characters from specified possition.
151: * @param offset Position inside document.
152: * @param length Number of characters to be deleted.
153: */
154: public abstract void delete(int offset, int length);
155:
156: /**
157: * Deletes given number of characters from current caret possition.
158: * @param length Number of characters to be deleted.
159: */
160: public abstract void delete(int length);
161:
162: /**
163: * Delete specified line.
164: * @param line Number of line.
165: */
166: public abstract void deleteLine(int line);
167:
168: /**
169: * Deletes characters between column1 and column2 on the specified line.
170: * @param lineNumber Number of line.
171: * @param column1 Column position where to start deleting.
172: * @param column2 Column position where to stop deleting.
173: */
174: public abstract void delete(int lineNumber, int column1, int column2);
175: }
|