#844 lowercase/uppercase convertion in DefineTexts

This commit is contained in:
2015-04-07 20:26:49 +02:00
parent c9b5434d75
commit 22751367cd
54 changed files with 557 additions and 503 deletions
@@ -58,10 +58,10 @@ public class MethodCodePanel extends JPanel implements ActionListener {
sourceTextArea.requestFocusInWindow();
}
public int getScriptIndex(){
public int getScriptIndex() {
return sourceTextArea.getScriptIndex();
}
public String getTraitName() {
return sourceTextArea.getName();
}
@@ -79,14 +79,12 @@ public class MethodCodePanel extends JPanel implements ActionListener {
}
public void setBodyIndex(int bodyIndex, ABC abc, Trait trait, int scriptIndex) {
sourceTextArea.setBodyIndex(bodyIndex, abc, sourceTextArea.getName(), trait,scriptIndex);
sourceTextArea.setBodyIndex(bodyIndex, abc, sourceTextArea.getName(), trait, scriptIndex);
}
public void setBodyIndex(int bodyIndex, ABC abc, String name, Trait trait,int scriptIndex) {
sourceTextArea.setBodyIndex(bodyIndex, abc, name, trait,scriptIndex);
public void setBodyIndex(int bodyIndex, ABC abc, String name, Trait trait, int scriptIndex) {
sourceTextArea.setBodyIndex(bodyIndex, abc, name, trait, scriptIndex);
}
public int getBodyIndex() {
return sourceTextArea.bodyIndex;