mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 14:20:46 +00:00
#844 lowercase/uppercase convertion in DefineTexts
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user