- Eclipse Che
- HelloWorld.java
- String.class
1
2
3
4
5
6
7
8
9
10
11
12
13
/*---------------------------------------------------------------------------------------------
* Copyright (c) Red Hat, Inc. All rights reserved.
* Licensed under the MIT License. See LICENSE in the project root for license information.
*--------------------------------------------------------------------------------------------*/
package org.eclipse.che.examples;
public class HelloWorld {
public static void main(String... argvs) {
String a = "Che";
System.out.println("Hello World " + a + "!");
}
}
Loading...
Loading...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Failed to get sources. Instead, stub sources have been generated by the disassembler.
// Implementation of methods is unavailable.
package java.lang;
public final class String implements java.io.Serializable, java.lang.Comparable, java.lang.CharSequence {
private final byte[] value;
private final byte coder;
private int hash;
private static final long serialVersionUID = -6849794470754667710L;
static final boolean COMPACT_STRINGS;
private static final java.io.ObjectStreamField[] serialPersistentFields;
public static final java.util.Comparator<java.lang.String> CASE_INSENSITIVE_ORDER;
static final byte LATIN1 = 0;
static final byte UTF16 = 1;
public String() {
}
public String(java.lang.String original) {
}