Skip to content

Commit 9553361

Browse files
author
Lana Steuck
committed
Merge
2 parents c2ce4de + 060b81f commit 9553361

File tree

367 files changed

+6823
-4917
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

367 files changed

+6823
-4917
lines changed

jaxws/src/share/jaxws_classes/com/sun/istack/internal/tools/ParallelWorldClassLoader.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -211,6 +211,7 @@ public static URL toJarUrl(URL res) throws ClassNotFoundException, MalformedURLE
211211
throw new ClassNotFoundException("Loaded outside a jar "+url);
212212
url = url.substring(4); // cut off jar:
213213
url = url.substring(0,url.lastIndexOf('!')); // cut off everything after '!'
214+
url = url.replaceAll(" ", "%20"); // support white spaces in path
214215
return new URL(url);
215216
}
216217
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/probe/provider/annotations/Probe.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -47,5 +47,8 @@
4747
public boolean self() default false;
4848
public String providerName() default "";
4949
public String moduleName() default "";
50-
50+
public boolean stateful() default false;
51+
public String profileNames() default "";
52+
public boolean statefulReturn() default false;
53+
public boolean statefulException() default false;
5154
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/AverageRangeStatisticImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -27,7 +27,6 @@
2727

2828
package com.sun.org.glassfish.external.statistics.impl;
2929

30-
import java.util.concurrent.atomic.AtomicLong;
3130
import java.util.Map;
3231
import java.lang.reflect.*;
3332
import com.sun.org.glassfish.external.statistics.AverageRangeStatistic;
@@ -139,6 +138,8 @@ public synchronized long getLowWaterMark() {
139138

140139
// todo: equals implementation
141140
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
141+
checkMethod(method);
142+
142143
Object result;
143144
try {
144145
result = method.invoke(this, args);
@@ -147,7 +148,6 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl
147148
} catch (Exception e) {
148149
throw new RuntimeException("unexpected invocation exception: " +
149150
e.getMessage());
150-
} finally {
151151
}
152152
return result;
153153
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/BoundaryStatisticImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -27,7 +27,6 @@
2727

2828
package com.sun.org.glassfish.external.statistics.impl;
2929
import com.sun.org.glassfish.external.statistics.BoundaryStatistic;
30-
import java.util.concurrent.atomic.AtomicLong;
3130
import java.util.Map;
3231
import java.lang.reflect.*;
3332

@@ -81,6 +80,8 @@ public synchronized void reset() {
8180

8281
// todo: equals implementation
8382
public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
83+
checkMethod(m);
84+
8485
Object result;
8586
try {
8687
result = m.invoke(this, args);
@@ -89,7 +90,6 @@ public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
8990
} catch (Exception e) {
9091
throw new RuntimeException("unexpected invocation exception: " +
9192
e.getMessage());
92-
} finally {
9393
}
9494
return result;
9595
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/BoundedRangeStatisticImpl.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,8 +26,8 @@
2626

2727

2828
package com.sun.org.glassfish.external.statistics.impl;
29+
2930
import com.sun.org.glassfish.external.statistics.BoundedRangeStatistic;
30-
import java.util.concurrent.atomic.AtomicLong;
3131
import java.util.Map;
3232
import java.lang.reflect.*;
3333

@@ -145,6 +145,8 @@ public synchronized void reset() {
145145

146146
// todo: equals implementation
147147
public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
148+
checkMethod(m);
149+
148150
Object result;
149151
try {
150152
result = m.invoke(this, args);
@@ -153,7 +155,6 @@ public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
153155
} catch (Exception e) {
154156
throw new RuntimeException("unexpected invocation exception: " +
155157
e.getMessage());
156-
} finally {
157158
}
158159
return result;
159160
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/CountStatisticImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,7 +26,6 @@
2626

2727
package com.sun.org.glassfish.external.statistics.impl;
2828
import com.sun.org.glassfish.external.statistics.CountStatistic;
29-
import java.util.concurrent.atomic.AtomicLong;
3029
import java.util.Map;
3130
import java.lang.reflect.*;
3231

@@ -103,6 +102,8 @@ public synchronized void reset() {
103102

104103
// todo: equals implementation
105104
public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
105+
checkMethod(m);
106+
106107
Object result;
107108
try {
108109
result = m.invoke(this, args);
@@ -111,7 +112,6 @@ public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
111112
} catch (Exception e) {
112113
throw new RuntimeException("unexpected invocation exception: " +
113114
e.getMessage());
114-
} finally {
115115
}
116116
return result;
117117
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/RangeStatisticImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -27,7 +27,6 @@
2727

2828
package com.sun.org.glassfish.external.statistics.impl;
2929
import com.sun.org.glassfish.external.statistics.RangeStatistic;
30-
import java.util.concurrent.atomic.AtomicLong;
3130
import java.util.Map;
3231
import java.lang.reflect.*;
3332

@@ -125,6 +124,8 @@ public synchronized String toString() {
125124

126125
// todo: equals implementation
127126
public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
127+
checkMethod(m);
128+
128129
Object result;
129130
try {
130131
result = m.invoke(this, args);
@@ -133,7 +134,6 @@ public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
133134
} catch (Exception e) {
134135
throw new RuntimeException("unexpected invocation exception: " +
135136
e.getMessage());
136-
} finally {
137137
}
138138
return result;
139139
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/StatisticImpl.java

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,8 +26,8 @@
2626

2727
package com.sun.org.glassfish.external.statistics.impl;
2828
import com.sun.org.glassfish.external.statistics.Statistic;
29-
import java.io.Serializable;
30-
import java.util.concurrent.atomic.AtomicLong;
29+
import java.lang.reflect.Method;
30+
import java.lang.reflect.Modifier;
3131
import java.util.Map;
3232
import java.util.concurrent.ConcurrentHashMap;
3333

@@ -133,4 +133,13 @@ public synchronized String toString() {
133133
protected static boolean isValidString(String str) {
134134
return (str!=null && str.length()>0);
135135
}
136+
137+
protected void checkMethod(Method method) {
138+
if (method == null || method.getDeclaringClass() == null
139+
|| !Statistic.class.isAssignableFrom(method.getDeclaringClass())
140+
|| Modifier.isStatic(method.getModifiers())) {
141+
throw new RuntimeException("Invalid method on invoke");
142+
}
143+
}
144+
136145
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/StringStatisticImpl.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -90,6 +90,8 @@ public synchronized void reset() {
9090

9191
// todo: equals implementation
9292
public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
93+
checkMethod(m);
94+
9395
Object result;
9496
try {
9597
result = m.invoke(this, args);
@@ -98,7 +100,6 @@ public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
98100
} catch (Exception e) {
99101
throw new RuntimeException("unexpected invocation exception: " +
100102
e.getMessage());
101-
} finally {
102103
}
103104
return result;
104105
}

jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/TimeStatisticImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -28,7 +28,6 @@
2828
package com.sun.org.glassfish.external.statistics.impl;
2929

3030
import com.sun.org.glassfish.external.statistics.TimeStatistic;
31-
import java.util.concurrent.atomic.AtomicLong;
3231
import java.util.Map;
3332
import java.lang.reflect.*;
3433

@@ -145,6 +144,8 @@ public synchronized void reset() {
145144

146145
// todo: equals implementation
147146
public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
147+
checkMethod(m);
148+
148149
Object result;
149150
try {
150151
result = m.invoke(this, args);
@@ -153,7 +154,6 @@ public Object invoke(Object proxy, Method m, Object[] args) throws Throwable {
153154
} catch (Exception e) {
154155
throw new RuntimeException("unexpected invocation exception: " +
155156
e.getMessage());
156-
} finally {
157157
}
158158
return result;
159159
}

jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/MessageBundle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ BASEDIR_DOESNT_EXIST = \
3030
Non-existent directory: {0}
3131

3232
VERSION = \
33-
schemagen 2.2.8-b01
33+
schemagen 2.2.8-b20130806.1801
3434

3535
FULLVERSION = \
36-
schemagen full version "2.2.8-b01"
36+
schemagen full version "2.2.8-b20130806.1801"
3737

3838
USAGE = \
3939
Usage: schemagen [-options ...] <java files> \n\

jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/MessageBundle_de.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ UNEXPECTED_NGCC_TOKEN = Nicht erkanntes {0} in Zeile {1} Spalte {2}
2727

2828
BASEDIR_DOESNT_EXIST = Nicht vorhandenes Verzeichnis: {0}
2929

30-
VERSION = schemagen 2.2.8-b01
30+
VERSION = schemagen 2.2.8-b20130806.1801
3131

32-
FULLVERSION = schemagen vollst\u00E4ndige Version "2.2.8-b01"
32+
FULLVERSION = schemagen vollst\u00E4ndige Version "2.2.8-b20130806.1801"
3333

3434
USAGE = Verwendung: schemagen [-options ...] <java files> \nOptionen: \n\\ \\ \\ \\ -d <path> : Gibt an, wo die von Prozessor und javac generierten Klassendateien gespeichert werden sollen\n\\ \\ \\ \\ -cp <path> : Gibt an, wo die vom Benutzer angegebenen Dateien gespeichert sind\n\\ \\ \\ \\ -classpath <path> : Gibt an, wo die vom Benutzer angegebenen Dateien gespeichert sind\n\\ \\ \\ \\ -encoding <encoding> : Gibt die Codierung f\u00FCr die Annotationsverarbeitung/den javac-Aufruf an \n\\ \\ \\ \\ -episode <file> : Generiert Episodendatei f\u00FCr separate Kompilierung\n\\ \\ \\ \\ -version : Zeigt Versionsinformation an\n\\ \\ \\ \\ -fullversion : Zeigt vollst\u00E4ndige Versionsinformationen an\n\\ \\ \\ \\ -help : Zeigt diese Verwendungsmeldung an

jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/MessageBundle_es.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ UNEXPECTED_NGCC_TOKEN = Aparece un {0} inesperado en la l\u00EDnea {1} y la colu
2727

2828
BASEDIR_DOESNT_EXIST = Directorio no existente: {0}
2929

30-
VERSION = schemagen 2.2.8-b01
30+
VERSION = schemagen 2.2.8-b20130806.1801
3131

32-
FULLVERSION = versi\u00F3n completa de schemagen "2.2.8-b01"
32+
FULLVERSION = versi\u00F3n completa de schemagen "2.2.8-b20130806.1801"
3333

3434
USAGE = Sintaxis: schemagen [-options ...] <archivos java> \nOpciones: \n\\ \\ \\ \\ -d <ruta de acceso> : especifique d\u00F3nde se colocan los archivos de clase generados por javac y el procesador\n\\ \\ \\ \\ -cp <ruta de acceso> : especifique d\u00F3nde se encuentran los archivos especificados por el usuario\n\\ \\ \\ \\ -encoding <codificaci\u00F3n> : especifique la codificaci\u00F3n que se va a utilizar para el procesamiento de anotaciones/llamada de javac\n\\ \\ \\ \\ -episode <archivo> : genera un archivo de episodio para una compilaci\u00F3n diferente\n\\ \\ \\ \\ -version : muestra la informaci\u00F3n de la versi\u00F3n\n\\ \\ \\ \\ -fullversion : muestra la informaci\u00F3n completa de la versi\u00F3n\n\\ \\ \\ \\ -help : muestra este mensaje de sintaxis

jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/MessageBundle_fr.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ UNEXPECTED_NGCC_TOKEN = Un \u00E9l\u00E9ment {0} inattendu appara\u00EEt \u00E0
2727

2828
BASEDIR_DOESNT_EXIST = R\u00E9pertoire {0} inexistant
2929

30-
VERSION = schemagen 2.2.8-b01
30+
VERSION = schemagen 2.2.8-b20130806.1801
3131

32-
FULLVERSION = version compl\u00E8te de schemagen "2.2.8-b01"
32+
FULLVERSION = version compl\u00E8te de schemagen "2.2.8-b20130806.1801"
3333

3434
USAGE = Syntaxe : schemagen [-options ...] <java files> \nOptions : \n\ \ \ \ -d <path> : indiquez o\u00F9 placer les fichiers de classe g\u00E9n\u00E9r\u00E9s par le processeur et le compilateur javac\n\ \ \ \ -cp <path> : indiquez o\u00F9 trouver les fichiers sp\u00E9cifi\u00E9s par l'utilisateur\n\ \ \ \ -classpath <path> : indiquez o\u00F9 trouver les fichiers sp\u00E9cifi\u00E9s par l'utilisateur\n\ \ \ \ -encoding <encoding> : indiquez l'encodage \u00E0 utiliser pour l'appel de javac/traitement de l'annotation \n\ \ \ \ -episode <file> : g\u00E9n\u00E9rez un fichier d'\u00E9pisode pour la compilation s\u00E9par\u00E9e\n\ \ \ \ -version : affichez les informations de version\n\ \ \ \ -fullversion : affichez les informations compl\u00E8tes de version\n\ \ \ \ -help : affichez ce message de syntaxe

jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/MessageBundle_it.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ UNEXPECTED_NGCC_TOKEN = {0} imprevisto visualizzato sulla riga {1} colonna {2}
2727

2828
BASEDIR_DOESNT_EXIST = Directory non esistente: {0}
2929

30-
VERSION = schemagen 2.2.8-b01
30+
VERSION = schemagen 2.2.8-b20130806.1801
3131

32-
FULLVERSION = versione completa schemagen "2.2.8-b01"
32+
FULLVERSION = versione completa schemagen "2.2.8-b20130806.1801"
3333

3434
USAGE = Uso: schemagen [-options ...] <java files> \nOpzioni: \n\ \ \ \ -d <path> : specifica dove posizionare il processore e i file della classe generata javac\n\ \ \ \ -cp <path> : specifica dove trovare i file specificati dall'utente\n\ \ \ \ -classpath <path> : specifica dove trovare i file specificati dall'utente\n\ \ \ \ -encoding <encoding> : specifica la codifica da usare per l'elaborazione dell'annotazione/richiamo javac \n\ \ \ \ -episode <file> : genera il file di episodio per la compilazione separata\n\ \ \ \ -version : visualizza le informazioni sulla versione\n\ \ \ \ -fullversion : visualizza le informazioni sulla versione completa\n\ \ \ \ -help : visualizza questo messaggio sull'uso

jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/MessageBundle_ja.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ UNEXPECTED_NGCC_TOKEN = \u4E88\u671F\u3057\u306A\u3044{0}\u304C\u884C{1}\u3001\u
2727

2828
BASEDIR_DOESNT_EXIST = \u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u304C\u5B58\u5728\u3057\u307E\u305B\u3093: {0}
2929

30-
VERSION = schemagen 2.2.8-b01
30+
VERSION = schemagen 2.2.8-b20130806.1801
3131

32-
FULLVERSION = schemagen\u30D5\u30EB\u30FB\u30D0\u30FC\u30B8\u30E7\u30F3"2.2.8-b01"
32+
FULLVERSION = schemagen\u30D5\u30EB\u30FB\u30D0\u30FC\u30B8\u30E7\u30F3"2.2.8-b20130806.1801"
3333

3434
USAGE = \u4F7F\u7528\u65B9\u6CD5: schemagen [-options ...] <java files> \n\u30AA\u30D7\u30B7\u30E7\u30F3: \n\ \ \ \ -d <path> : \u30D7\u30ED\u30BB\u30C3\u30B5\u304A\u3088\u3073javac\u304C\u751F\u6210\u3057\u305F\u30AF\u30E9\u30B9\u30FB\u30D5\u30A1\u30A4\u30EB\u3092\u7F6E\u304F\u4F4D\u7F6E\u3092\u6307\u5B9A\u3057\u307E\u3059\n\ \ \ \ -cp <path> : \u30E6\u30FC\u30B6\u30FC\u304C\u6307\u5B9A\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u691C\u7D22\u3059\u308B\u4F4D\u7F6E\u3092\u6307\u5B9A\u3057\u307E\u3059\n\ \ \ \ -classpath <path> : \u30E6\u30FC\u30B6\u30FC\u304C\u6307\u5B9A\u3057\u305F\u30D5\u30A1\u30A4\u30EB\u3092\u691C\u7D22\u3059\u308B\u4F4D\u7F6E\u3092\u6307\u5B9A\u3057\u307E\u3059\n\ \ \ \ -encoding <encoding> : \u6CE8\u91C8\u51E6\u7406/javac\u547C\u51FA\u3057\u306B\u4F7F\u7528\u3059\u308B\u30A8\u30F3\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0\u3092\u6307\u5B9A\u3057\u307E\u3059\n\ \ \ \ -episode <file> : \u30B3\u30F3\u30D1\u30A4\u30EB\u3054\u3068\u306B\u30A8\u30D4\u30BD\u30FC\u30C9\u30FB\u30D5\u30A1\u30A4\u30EB\u3092\u751F\u6210\u3057\u307E\u3059\n\ \ \ \ -version : \u30D0\u30FC\u30B8\u30E7\u30F3\u60C5\u5831\u3092\u8868\u793A\u3057\u307E\u3059\n\ \ \ \ -fullversion : \u30D5\u30EB\u30FB\u30D0\u30FC\u30B8\u30E7\u30F3\u60C5\u5831\u3092\u8868\u793A\u3057\u307E\u3059\n\ \ \ \ -help : \u3053\u306E\u4F7F\u7528\u4F8B\u30E1\u30C3\u30BB\u30FC\u30B8\u3092\u8868\u793A\u3057\u307E\u3059

jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/MessageBundle_ko.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ UNEXPECTED_NGCC_TOKEN = \uC608\uC0C1\uCE58 \uC54A\uC740 {0}\uC774(\uAC00) {1}\uD
2727

2828
BASEDIR_DOESNT_EXIST = \uC874\uC7AC\uD558\uC9C0 \uC54A\uB294 \uB514\uB809\uD1A0\uB9AC: {0}
2929

30-
VERSION = schemagen 2.2.8-b01
30+
VERSION = schemagen 2.2.8-b20130806.1801
3131

32-
FULLVERSION = schemagen \uC815\uC2DD \uBC84\uC804 "2.2.8-b01"
32+
FULLVERSION = schemagen \uC815\uC2DD \uBC84\uC804 "2.2.8-b20130806.1801"
3333

3434
USAGE = \uC0AC\uC6A9\uBC95: schemagen [-options ...] <java files> \n\uC635\uC158: \n\ \ \ \ -d <path> : \uD504\uB85C\uC138\uC11C \uBC0F javac\uC5D0\uC11C \uC0DD\uC131\uD55C \uD074\uB798\uC2A4 \uD30C\uC77C\uC744 \uBC30\uCE58\uD560 \uC704\uCE58\uB97C \uC9C0\uC815\uD569\uB2C8\uB2E4.\n\ \ \ \ -cp <path> : \uC0AC\uC6A9\uC790\uAC00 \uC9C0\uC815\uD55C \uD30C\uC77C\uC744 \uCC3E\uC744 \uC704\uCE58\uB97C \uC9C0\uC815\uD569\uB2C8\uB2E4.\n\ \ \ \ -classpath <path> : \uC0AC\uC6A9\uC790\uAC00 \uC9C0\uC815\uD55C \uD30C\uC77C\uC744 \uCC3E\uC744 \uC704\uCE58\uB97C \uC9C0\uC815\uD569\uB2C8\uB2E4.\n\ \ \ \ -encoding <encoding> : \uC8FC\uC11D \uCC98\uB9AC/javac \uD638\uCD9C\uC5D0 \uC0AC\uC6A9\uD560 \uC778\uCF54\uB529\uC744 \uC9C0\uC815\uD569\uB2C8\uB2E4. \n\ \ \ \ -episode <file> : \uBCC4\uB3C4 \uCEF4\uD30C\uC77C\uC744 \uC704\uD574 episode \uD30C\uC77C\uC744 \uC0DD\uC131\uD569\uB2C8\uB2E4.\n\ \ \ \ -version : \uBC84\uC804 \uC815\uBCF4\uB97C \uD45C\uC2DC\uD569\uB2C8\uB2E4.\n\ \ \ \ -fullversion : \uC815\uC2DD \uBC84\uC804 \uC815\uBCF4\uB97C \uD45C\uC2DC\uD569\uB2C8\uB2E4.\n\ \ \ \ -help : \uC774 \uC0AC\uC6A9\uBC95 \uBA54\uC2DC\uC9C0\uB97C \uD45C\uC2DC\uD569\uB2C8\uB2E4.

0 commit comments

Comments
 (0)