Changeset 1758 for trunk/autoquest-plugin-jfc
- Timestamp:
- 09/19/14 13:05:54 (10 years ago)
- Location:
- trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/android
- Files:
-
- 5 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/android/AndroidLogParser.java
r1755 r1758 270 270 } 271 271 else if ("parent".equals(atts.getValue("name"))) { 272 currentParentHash = Long.parseLong(atts.getValue("value") , 16);272 currentParentHash = Long.parseLong(atts.getValue("value")); 273 273 } 274 274 } -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/AndroidGUIElement.java
r1757 r1758 1 // Copyright 2014 Georg-August-Universität Göttingen, Germany 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 1 14 package de.ugoe.cs.autoquest.plugin.android.guimodel; 2 15 … … 104 117 } 105 118 106 119 /** 120 * <p> 121 * A short string describing the GUI element, e.g., Button, Canvas, or ScrollBar. 122 * </p> 123 * 124 * @return short element descriptor 125 */ 126 protected String getElementDescriptor() { 127 return "Default"; 128 } 107 129 108 130 } -
trunk/autoquest-plugin-jfc/src/main/java/de/ugoe/cs/autoquest/plugin/android/guimodel/AndroidGUIElementSpec.java
r1754 r1758 1 // Copyright 2014 Georg-August-Universität Göttingen, Germany 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 1 14 package de.ugoe.cs.autoquest.plugin.android.guimodel; 2 15
Note: See TracChangeset
for help on using the changeset viewer.