Skip to content

Instantly share code, notes, and snippets.

@aalmiray
Created June 19, 2009 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aalmiray/132346 to your computer and use it in GitHub Desktop.
Save aalmiray/132346 to your computer and use it in GitHub Desktop.
public class Swing extends FXBase implements FXObject {
public static Object javafx$run$(final Sequence<? extends String> _$UNUSED$_$ARGS$_) {
return {
final javafx.stage.Stage jfx$0objlit = new javafx.stage.Stage(true);
jfx$0objlit.addTriggers$();
final int jfx$2count = jfx$0objlit.count$();
final short[] jfx$3map = GETMAP$javafx$stage$Stage();
for (int jfx$1loop = 0; jfx$1loop < jfx$2count; jfx$1loop += 1) switch (jfx$3map[jfx$1loop]) {
case 1:
jfx$0objlit.set$title("FX");
break;
case 2:
jfx$0objlit.set$width(100.0F);
break;
case 3:
jfx$0objlit.set$height(50.0F);
break;
case 4:
jfx$0objlit.set$visible(true);
break;
default:
jfx$0objlit.applyDefaults$(jfx$1loop);
break;
}
jfx$0objlit.complete$();
jfx$0objlit
};
}
public static int VCNT$ = -1;
public static int VCNT$() {
if (VCNT$ == -1) {
VCNT$ = FXBase.VCNT$() + 0;
}
return VCNT$;
}
public int count$() {
return VCNT$();
}
static short[] MAP$javafx$stage$Stage;
public static short[] GETMAP$javafx$stage$Stage() {
return MAP$javafx$stage$Stage == null ? (MAP$javafx$stage$Stage = FXBase.makeInitMap$(javafx.stage.Stage.VCNT$(), javafx.stage.Stage.VOFF$title, javafx.stage.Stage.VOFF$width, javafx.stage.Stage.VOFF$height, javafx.stage.Stage.VOFF$visible)) : MAP$javafx$stage$Stage;
}
static {
}
public void initialize$() {
addTriggers$();
applyDefaults$();
complete$();
}
public Swing() {
this(false);
initialize$();
}
public Swing(final boolean dummy) {
super(dummy);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment