You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(103) |
Aug
(2) |
Sep
(186) |
Oct
(218) |
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
|
Mar
(1) |
Apr
(229) |
May
(1) |
Jun
(422) |
Jul
(25) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
|
From: <fb...@us...> - 2003-06-29 04:45:51
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/builder
In directory sc8-pr-cvs1:/tmp/cvs-serv8005/src/java/tests/jgb/builder
Modified Files:
TestDefaultBuilder.java
Log Message:
* src/java/tests/jgb/builder/TestDefaultBuilder.java:
Added more tests to verify behavior of DefaultBuilder when verbose
logging is true.
* src/java/core/jgb/builder/DefaultBuilder.java:
Implemented tests.
Index: TestDefaultBuilder.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/TestDefaultBuilder.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** TestDefaultBuilder.java 29 Jun 2003 04:02:19 -0000 1.3
--- TestDefaultBuilder.java 29 Jun 2003 04:45:34 -0000 1.4
***************
*** 22,32 ****
import org.xml.sax.SAXParseException;
import org.xml.sax.SAXException;
! import java.io.StringWriter;
! import java.io.PrintWriter;
public class TestDefaultBuilder extends AbstractBuilderTest {
private StringWriter loggingStream = new StringWriter();
private PrintWriter out = new PrintWriter(loggingStream);
public TestDefaultBuilder(String s) {
--- 22,36 ----
import org.xml.sax.SAXParseException;
import org.xml.sax.SAXException;
+ import org.xml.sax.Attributes;
! import java.io.*;
!
! import com.mockobjects.dynamic.Mock;
! import com.mockobjects.dynamic.C;
public class TestDefaultBuilder extends AbstractBuilderTest {
private StringWriter loggingStream = new StringWriter();
private PrintWriter out = new PrintWriter(loggingStream);
+ private Mock mockTagHandlerFactory = new Mock(TagHandlerFactory.class);
public TestDefaultBuilder(String s) {
***************
*** 204,207 ****
--- 208,327 ----
assertEquals("did not log anything: '" + exceptionMessage + "'",
0, exceptionMessage.length());
+ }
+
+ public void testPrintsIndentedElementsWhenVerbose() throws SAXException, IOException {
+ builder = new DefaultBuilder((TagHandlerFactory)mockTagHandlerFactory.proxy());
+ builder.setLoggingStream(out);
+
+ Mock tagHandler = new Mock(TagHandler.class);
+ tagHandler.expect("startElement", C.ANY_ARGS);
+ tagHandler.expect("startElement", C.ANY_ARGS);
+ tagHandler.expect("endElement", C.ANY_ARGS);
+ tagHandler.expect("endElement", C.ANY_ARGS);
+
+ Mock mockAttributes = new Mock(Attributes.class);
+ mockAttributes.matchAndReturn("getValue", C.ANY_ARGS, null);
+
+ mockTagHandlerFactory.matchAndReturn("getHandlerFor",
+ C.ANY_ARGS, tagHandler.proxy());
+ builder.setVerbose(true);
+ builder.startElement(null, "null", "null",
+ (Attributes)mockAttributes.proxy());
+ builder.startElement(null, "null", "null",
+ (Attributes)mockAttributes.proxy());
+ builder.endElement(null, "null", "null");
+ builder.endElement(null, "null", "null");
+
+ BufferedReader in = createInStream();
+ assertEquals("<null>", in.readLine());
+ assertEquals(" <null>", in.readLine());
+ assertEquals(" </null>", in.readLine());
+ assertEquals("</null>", in.readLine());
+ }
+
+ public void testPrintsIdIfPresentWhenVerbose() throws SAXException, IOException {
+ builder = new DefaultBuilder((TagHandlerFactory)mockTagHandlerFactory.proxy());
+ builder.setLoggingStream(out);
+
+ Mock tagHandler = new Mock(TagHandler.class);
+ tagHandler.expect("startElement", C.ANY_ARGS);
+ tagHandler.expect("startElement", C.ANY_ARGS);
+ tagHandler.expect("endElement", C.ANY_ARGS);
+ tagHandler.expect("endElement", C.ANY_ARGS);
+
+ Mock mockAttributes = new Mock(Attributes.class);
+ mockAttributes.matchAndReturn("getValue", C.eq("id"), "nullid0");
+
+ mockTagHandlerFactory.matchAndReturn("getHandlerFor",
+ C.ANY_ARGS, tagHandler.proxy());
+ builder.setVerbose(true);
+ builder.startElement(null, "null", "null",
+ (Attributes)mockAttributes.proxy());
+ builder.startElement(null, "null", "null",
+ (Attributes)mockAttributes.proxy());
+ builder.endElement(null, "null", "null");
+ builder.endElement(null, "null", "null");
+
+ BufferedReader in = createInStream();
+ assertEquals("<null id='nullid0'>", in.readLine());
+ assertEquals(" <null id='nullid0'>", in.readLine());
+ assertEquals(" </null>", in.readLine());
+ assertEquals("</null>", in.readLine());
+ }
+
+ public void testPrintsNothingIfNotVerbose() throws SAXException, IOException {
+ builder = new DefaultBuilder((TagHandlerFactory)mockTagHandlerFactory.proxy());
+ builder.setLoggingStream(out);
+
+ Mock tagHandler = new Mock(TagHandler.class);
+ tagHandler.expect("startElement", C.ANY_ARGS);
+ tagHandler.expect("endElement", C.ANY_ARGS);
+
+ Mock mockAttributes = new Mock(Attributes.class);
+ mockAttributes.matchAndReturn("getValue", C.eq("id"), "nullid0");
+
+ mockTagHandlerFactory.matchAndReturn("getHandlerFor",
+ C.ANY_ARGS, tagHandler.proxy());
+ builder.setVerbose(false);
+ builder.startElement(null, "null", "null",
+ (Attributes)mockAttributes.proxy());
+ builder.endElement(null, "null", "null");
+
+ BufferedReader in = createInStream();
+ assertNull("no log occured", in.readLine());
+ }
+
+ public void testExtraEndElementsCauseNoExceptionOnVerboseLevel() throws SAXException, IOException {
+ builder = new DefaultBuilder((TagHandlerFactory)mockTagHandlerFactory.proxy());
+ builder.setLoggingStream(out);
+
+ Mock tagHandler = new Mock(TagHandler.class);
+ tagHandler.expect("startElement", C.ANY_ARGS);
+ tagHandler.expect("endElement", C.ANY_ARGS);
+ tagHandler.expect("endElement", C.ANY_ARGS);
+
+ Mock mockAttributes = new Mock(Attributes.class);
+ mockAttributes.matchAndReturn("getValue", C.eq("id"), "nullid0");
+
+ mockTagHandlerFactory.matchAndReturn("getHandlerFor",
+ C.ANY_ARGS, tagHandler.proxy());
+ builder.setVerbose(true);
+ builder.startElement(null, "null", "null",
+ (Attributes)mockAttributes.proxy());
+ builder.endElement(null, "null", "null");
+ builder.endElement(null, "null", "null");
+
+ BufferedReader in = createInStream();
+ assertEquals("<null id='nullid0'>", in.readLine());
+ assertEquals("</null>", in.readLine());
+ assertEquals("</null>", in.readLine());
+ }
+
+ private BufferedReader createInStream() {
+ out.flush();
+ out.close();
+ BufferedReader in = new BufferedReader(
+ new StringReader(loggingStream.toString()));
+ return in;
}
|
|
From: <fb...@us...> - 2003-06-29 04:02:21
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/builder
In directory sc8-pr-cvs1:/tmp/cvs-serv4135/src/java/tests/jgb/builder
Modified Files:
TestDefaultBuilder.java
Log Message:
* src/java/tests/jgb/builder/TestDefaultBuilder.java:
Added and modified tests to assert behavior of error handling
methods in DefaultBuilder.
* src/java/core/jgb/builder/DefaultBuilder.java:
Implemented tests.
Index: TestDefaultBuilder.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/TestDefaultBuilder.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TestDefaultBuilder.java 27 Jun 2003 16:45:49 -0000 1.2
--- TestDefaultBuilder.java 29 Jun 2003 04:02:19 -0000 1.3
***************
*** 23,33 ****
import org.xml.sax.SAXException;
! public class TestDefaultBuilder extends AbstractBuilderTest{
public TestDefaultBuilder(String s) {
super(s);
}
! public void testErrorStopsParsingImmediately() {
! SAXParseException parseException = new SAXParseException("", "", "", 0, 0);
try {
--- 23,47 ----
import org.xml.sax.SAXException;
! import java.io.StringWriter;
! import java.io.PrintWriter;
!
! public class TestDefaultBuilder extends AbstractBuilderTest {
! private StringWriter loggingStream = new StringWriter();
! private PrintWriter out = new PrintWriter(loggingStream);
!
public TestDefaultBuilder(String s) {
super(s);
}
! protected void setUp() throws Exception {
! super.setUp();
!
! builder.setLoggingStream(out);
! }
!
! public void testUnQuietErrorHandlingStopsBuildImmediatelyAndLogsException() {
! builder.setQuiet(false);
! SAXParseException parseException = new SAXParseException(
! "cause of exception", "PubId", "SysId", 241, 144);
try {
***************
*** 38,45 ****
parseException, possibleSuccess.getException());
}
}
! public void testFatalErrorStopsParsingImmediately() {
! SAXParseException parseException = new SAXParseException("", "", "", 0, 0);
try {
--- 52,103 ----
parseException, possibleSuccess.getException());
}
+
+ out.flush();
+ out.close();
+
+ String exceptionMessage = loggingStream.toString();
+
+ assertTrue("logs to passed stream",
+ 0 < exceptionMessage.length());
+ assertTrue("starts with ERROR:",
+ exceptionMessage.startsWith("ERROR:"));
+ assertTrue("writes exception message to log stream",
+ -1 != exceptionMessage.indexOf("cause of exception"));
+ assertTrue("write line number to log stream",
+ -1 != exceptionMessage.indexOf("line: 241"));
+ assertTrue("writes column number to log stream",
+ -1 != exceptionMessage.indexOf("column: 144"));
+ assertTrue("write Public ID to log stream",
+ -1 != exceptionMessage.indexOf("\"PubId\""));
+ assertTrue("writes System ID to log stream",
+ -1 != exceptionMessage.indexOf("\"SysId\""));
}
! public void testQuietErrorHandlingStopsBuildImmediatelyAndDoesNotLogException() {
! builder.setQuiet(true);
! SAXParseException parseException = new SAXParseException(
! "cause of exception", "PubId", "SysId", 128, 14);
!
! try {
! ((DefaultBuilder)builder).error(parseException);
! fail("Did not stop build by throwing new exception !");
! } catch (SAXException possibleSuccess) {
! assertSame("cause of exception must be set",
! parseException, possibleSuccess.getException());
! }
!
! out.flush();
! out.close();
!
! String exceptionMessage = loggingStream.toString();
!
! assertEquals("did not log anything: '" + exceptionMessage + "'",
! 0, exceptionMessage.length());
! }
!
! public void testUnQuietFatalErrorHandlingStopsBuildImmediatelyAndLogsException() {
! builder.setQuiet(false);
! SAXParseException parseException = new SAXParseException(
! "cause of exception", "PubId", "SysId", 33, 14);
try {
***************
*** 47,62 ****
fail("Did not stop build by throwing new exception !");
} catch (SAXException possibleSuccess) {
! assertSame("cause of exception must be set", parseException, possibleSuccess.getException());
}
}
! public void testWarningDoesNotStopsParsing() {
! SAXParseException parseException = new SAXParseException("", "", "", 0, 0);
try {
((DefaultBuilder)builder).warning(parseException);
pass();
! } catch (SAXException e) {
! fail("Parsing was stopped !");
}
}
--- 105,207 ----
fail("Did not stop build by throwing new exception !");
} catch (SAXException possibleSuccess) {
! assertSame("cause of exception must be set",
! parseException, possibleSuccess.getException());
}
+
+ out.flush();
+ out.close();
+
+ String exceptionMessage = loggingStream.toString();
+
+ assertTrue("logs to passed stream",
+ 0 < exceptionMessage.length());
+ assertTrue("starts with FATAL:",
+ exceptionMessage.startsWith("FATAL:"));
+ assertTrue("writes exception message to log stream",
+ -1 != exceptionMessage.indexOf("cause of exception"));
+ assertTrue("write line number to log stream",
+ -1 != exceptionMessage.indexOf("line: 33"));
+ assertTrue("writes column number to log stream",
+ -1 != exceptionMessage.indexOf("column: 14"));
+ assertTrue("write Public ID to log stream",
+ -1 != exceptionMessage.indexOf("\"PubId\""));
+ assertTrue("writes System ID to log stream",
+ -1 != exceptionMessage.indexOf("\"SysId\""));
}
! public void testQuietFatalErrorHandlingStopsBuildImmediatelyAndDoesNotLogException() {
! builder.setQuiet(true);
! SAXParseException parseException = new SAXParseException(
! "cause of exception", "PubId", "SysId", 32, 13);
!
! try {
! ((DefaultBuilder)builder).fatalError(parseException);
! fail("Did not stop build by throwing new exception !");
! } catch (SAXException possibleSuccess) {
! assertSame("cause of exception must be set",
! parseException, possibleSuccess.getException());
! }
!
! out.flush();
! out.close();
!
! String exceptionMessage = loggingStream.toString();
!
! assertEquals("did not log anything: '" + exceptionMessage + "'",
! 0, exceptionMessage.length());
! }
!
! public void testUnQuietWarningHandlingDoesNotStopBuildAndLogsException() {
! builder.setQuiet(false);
! SAXParseException parseException = new SAXParseException(
! "cause of exception", "PubId", "SysId", 47, 12);
!
try {
((DefaultBuilder)builder).warning(parseException);
pass();
! } catch (SAXException possibleSuccess) {
! fail("Threw an Exception when not required to");
}
+
+ out.flush();
+ out.close();
+
+ String exceptionMessage = loggingStream.toString();
+
+ assertTrue("logs to passed stream",
+ 0 < exceptionMessage.length());
+ assertTrue("starts with WARNING:",
+ exceptionMessage.startsWith("WARNING:"));
+ assertTrue("writes exception message to log stream",
+ -1 != exceptionMessage.indexOf("cause of exception"));
+ assertTrue("write line number to log stream",
+ -1 != exceptionMessage.indexOf("line: 47"));
+ assertTrue("writes column number to log stream",
+ -1 != exceptionMessage.indexOf("column: 12"));
+ assertTrue("write Public ID to log stream",
+ -1 != exceptionMessage.indexOf("\"PubId\""));
+ assertTrue("writes System ID to log stream",
+ -1 != exceptionMessage.indexOf("\"SysId\""));
+ }
+
+ public void testQuietWarningHandlingDoesNotStopBuildImmediatelyAndDoesNotLogException() {
+ builder.setQuiet(true);
+ SAXParseException parseException = new SAXParseException(
+ "cause of exception", "PubId", "SysId", 31, 57);
+
+ try {
+ ((DefaultBuilder)builder).warning(parseException);
+ pass();
+ } catch (SAXException possibleSuccess) {
+ fail("Threw an Exception when not required to");
+ }
+
+ out.flush();
+ out.close();
+
+ String exceptionMessage = loggingStream.toString();
+
+ assertEquals("did not log anything: '" + exceptionMessage + "'",
+ 0, exceptionMessage.length());
}
|
|
From: <fb...@us...> - 2003-06-29 04:02:21
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb/builder
In directory sc8-pr-cvs1:/tmp/cvs-serv4135/src/java/core/jgb/builder
Modified Files:
DefaultBuilder.java
Log Message:
* src/java/tests/jgb/builder/TestDefaultBuilder.java:
Added and modified tests to assert behavior of error handling
methods in DefaultBuilder.
* src/java/core/jgb/builder/DefaultBuilder.java:
Implemented tests.
Index: DefaultBuilder.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/DefaultBuilder.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** DefaultBuilder.java 29 Jun 2003 02:42:38 -0000 1.5
--- DefaultBuilder.java 29 Jun 2003 04:02:19 -0000 1.6
***************
*** 52,55 ****
--- 52,56 ----
private final List resolvers = new LinkedList();
+ private PrintWriter logStream;
/**
***************
*** 99,111 ****
tagContext.put(TagHandler.OBJECTS_MAP_KEY, new HashMap());
parser.parse(in, this);
! return (JWindow) tagContext.get(TagHandler.CURRENT_WINDOW_KEY);
}
public void setLoggingStream(PrintWriter logStream) {
! throw new UnsupportedOperationException();
}
public Object getObject(String name) {
! return (((Map) tagContext.get(TagHandler.OBJECTS_MAP_KEY)).get(name));
}
--- 100,112 ----
tagContext.put(TagHandler.OBJECTS_MAP_KEY, new HashMap());
parser.parse(in, this);
! return (JWindow)tagContext.get(TagHandler.CURRENT_WINDOW_KEY);
}
public void setLoggingStream(PrintWriter logStream) {
! this.logStream = logStream;
}
public Object getObject(String name) {
! return (((Map)tagContext.get(TagHandler.OBJECTS_MAP_KEY)).get(name));
}
***************
*** 160,166 ****
public void warning(SAXParseException e) throws SAXException {
if (!quiet) {
! System.err.println("WARNING: line: " + e.getLineNumber()
! + ", column: " + e.getColumnNumber() + " - " + e.getMessage()
! + "\n(\"" + e.getPublicId() + "\" \"" + e.getSystemId() + "\")");
}
}
--- 161,175 ----
public void warning(SAXParseException e) throws SAXException {
if (!quiet) {
! logStream.print("WARNING: line: ");
! logStream.print(e.getLineNumber());
! logStream.print(", column: ");
! logStream.print(e.getColumnNumber());
! logStream.println(" - ");
! logStream.print(e.getMessage());
! logStream.print("(\"");
! logStream.print(e.getPublicId());
! logStream.print("\" \"");
! logStream.print(e.getSystemId());
! logStream.print("\")");
}
}
***************
*** 173,179 ****
public void fatalError(SAXParseException e) throws SAXException {
if (!quiet) {
! System.err.println("FATAL: line: " + e.getLineNumber()
! + ", column: " + e.getColumnNumber() + " - " + e.getMessage()
! + "\n(\"" + e.getPublicId() + "\" \"" + e.getSystemId() + "\")");
}
--- 182,196 ----
public void fatalError(SAXParseException e) throws SAXException {
if (!quiet) {
! logStream.print("FATAL: line: ");
! logStream.print(e.getLineNumber());
! logStream.print(", column: ");
! logStream.print(e.getColumnNumber());
! logStream.println(" - ");
! logStream.print(e.getMessage());
! logStream.print("(\"");
! logStream.print(e.getPublicId());
! logStream.print("\" \"");
! logStream.print(e.getSystemId());
! logStream.print("\")");
}
***************
*** 188,194 ****
public void error(SAXParseException e) throws SAXException {
if (!quiet) {
! System.err.println("ERROR: line: " + e.getLineNumber()
! + ", column: " + e.getColumnNumber() + " - " + e.getMessage()
! + "\n(\"" + e.getPublicId() + "\" \"" + e.getSystemId() + "\")");
}
--- 205,219 ----
public void error(SAXParseException e) throws SAXException {
if (!quiet) {
! logStream.print("ERROR: line: ");
! logStream.print(e.getLineNumber());
! logStream.print(", column: ");
! logStream.print(e.getColumnNumber());
! logStream.println(" - ");
! logStream.print(e.getMessage());
! logStream.print("(\"");
! logStream.print(e.getPublicId());
! logStream.print("\" \"");
! logStream.print(e.getSystemId());
! logStream.print("\")");
}
***************
*** 217,221 ****
*/
private TagHandler getHandlerFor(String qName) throws SAXException {
! Stack handlersFactory = (Stack) tagContext.get(TagHandler.TAG_HANDLER_FACTORY_STACK_KEY);
if (handlersFactory.isEmpty()) {
try {
--- 242,246 ----
*/
private TagHandler getHandlerFor(String qName) throws SAXException {
! Stack handlersFactory = (Stack)tagContext.get(TagHandler.TAG_HANDLER_FACTORY_STACK_KEY);
if (handlersFactory.isEmpty()) {
try {
***************
*** 226,230 ****
}
! TagHandlerFactory factory = (TagHandlerFactory) handlersFactory.peek();
try {
return factory.getHandlerFor(qName);
--- 251,255 ----
}
! TagHandlerFactory factory = (TagHandlerFactory)handlersFactory.peek();
try {
return factory.getHandlerFor(qName);
***************
*** 250,254 ****
try {
for (Iterator iterator = resolvers.iterator(); iterator.hasNext();) {
! EntityResolver resolver = (EntityResolver) iterator.next();
InputSource entity = resolver.resolveEntity(publicId, systemId);
if (null != entity) {
--- 275,279 ----
try {
for (Iterator iterator = resolvers.iterator(); iterator.hasNext();) {
! EntityResolver resolver = (EntityResolver)iterator.next();
InputSource entity = resolver.resolveEntity(publicId, systemId);
if (null != entity) {
|
|
From: <fb...@us...> - 2003-06-29 03:26:59
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb
In directory sc8-pr-cvs1:/tmp/cvs-serv793/src/java/tests/jgb
Modified Files:
TestBuildWindowFromXmlFile.java
Log Message:
* src/java/tests/jgb/TestBuildWindowFromXmlFile.java:
Added some more tests to check implementation.
* src/java/core/jgb/BuildWindowFromXmlFile.java:
Implemented tests.
Index: TestBuildWindowFromXmlFile.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/TestBuildWindowFromXmlFile.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** TestBuildWindowFromXmlFile.java 29 Jun 2003 02:42:38 -0000 1.4
--- TestBuildWindowFromXmlFile.java 29 Jun 2003 03:26:55 -0000 1.5
***************
*** 22,25 ****
--- 22,28 ----
import com.mockobjects.dynamic.C;
import com.mockobjects.dynamic.Mock;
+ import com.mockobjects.ExpectationCounter;
+ import com.mockobjects.Verifiable;
+ import com.mockobjects.util.Verifier;
import jgb.builder.Builder;
import junit.framework.TestCase;
***************
*** 178,181 ****
--- 181,258 ----
assertSame("Returns the window that was returned from the builder",
window, builtWindow);
+ }
+
+ public void testUsageInformation() throws IOException {
+ InvalidParameterException e = new RequiredArgumentMissingException("filename");
+ StringWriter out = new StringWriter();
+ PrintWriter tempOut = new PrintWriter(out);
+ windowBuilder.printUsage(tempOut, e);
+ tempOut.flush();
+ tempOut.close();
+
+ BufferedReader in = new BufferedReader(new StringReader(out.toString()));
+
+ assertEquals("Error: " + e.getMessage(), in.readLine());
+ assertEquals("Usage:", in.readLine());
+ assertEquals(" java jgb.BuildWindowFromXmlFile [--verbose|-v] [--show] <xml file>", in.readLine());
+ assertEquals("where", in.readLine());
+ assertEquals(" --show is asking for the packing and setting ", in.readLine());
+ assertEquals(" the visiblity of the built window", in.readLine());
+ assertEquals(" --verbose or -v is asking for the Builder to be verbose", in.readLine());
+ assertEquals(" --quiet or -q is asking for the Builder to be quiet", in.readLine());
+ assertEquals(" and <xml file> is the path to an XML file which should be processed", in.readLine());
+ }
+
+ public void testRecognizesShowOption() throws InvalidParameterException, FileNotFoundException {
+ args = new String[]{
+ "--show",
+ "src/examples/simplewindow.xml",
+ };
+
+ windowBuilder.processArguments(
+ (Builder)mockBuilder.proxy(), Arrays.asList(args));
+ }
+
+ public void testPacksAndShowsReturnedWindow() throws IOException, InvalidParameterException, SAXException {
+ args = new String[]{
+ "--show",
+ "src/examples/simplewindow.xml",
+ };
+
+ windowBuilder.processArguments(
+ (Builder)mockBuilder.proxy(), Arrays.asList(args));
+ InputSource in = new InputSource();
+ MockJFrame mockJFrame = new MockJFrame();
+
+ mockBuilder.expectAndReturn("build", C.same(in), mockJFrame);
+ windowBuilder.start((Builder)mockBuilder.proxy(), in);
+
+ mockJFrame.verify();
+ mockBuilder.verify();
+ }
+
+ private static final class MockJFrame extends JFrame implements Verifiable {
+ private ExpectationCounter visibleCalls = new ExpectationCounter("setVisible");
+ private ExpectationCounter packCalls = new ExpectationCounter("pack");
+
+ public void setExpectedVisibleCalls(int visibleCalls) {
+ this.visibleCalls.setExpected(visibleCalls);
+ }
+
+ public void setExpectedPackCalls(int packCalls) {
+ this.packCalls.setExpected(packCalls);
+ }
+
+ public void setVisible(boolean b) {
+ visibleCalls.inc();
+ }
+
+ public void pack() {
+ packCalls.inc();
+ }
+
+ public void verify() {
+ Verifier.verifyObject(this);
+ }
}
}
|
|
From: <fb...@us...> - 2003-06-29 03:26:59
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb In directory sc8-pr-cvs1:/tmp/cvs-serv793/src/java/core/jgb Modified Files: BuildWindowFromXmlFile.java Log Message: * src/java/tests/jgb/TestBuildWindowFromXmlFile.java: Added some more tests to check implementation. * src/java/core/jgb/BuildWindowFromXmlFile.java: Implemented tests. Index: BuildWindowFromXmlFile.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/BuildWindowFromXmlFile.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** BuildWindowFromXmlFile.java 29 Jun 2003 02:42:38 -0000 1.15 --- BuildWindowFromXmlFile.java 29 Jun 2003 03:26:55 -0000 1.16 *************** *** 26,30 **** import org.xml.sax.SAXException; ! import javax.swing.*; import java.io.*; import java.util.Arrays; --- 26,30 ---- import org.xml.sax.SAXException; ! import java.awt.*; import java.io.*; import java.util.Arrays; *************** *** 32,36 **** import java.util.LinkedList; import java.util.List; - import java.awt.*; /** --- 32,35 ---- *************** *** 56,59 **** --- 55,64 ---- * {@linkplain jgb.builder.DefaultBuilder#setVerbose(boolean) verbose}. * </dd> + * <dt>--quiet</dt> + * <dt>-q</dt> + * <dd> + * Asks the {@link jgb.builder.DefaultBuilder Builder} to be + * {@linkplain jgb.builder.DefaultBuilder#setQuiet(boolean) quiet}. + * </dd> * <dt>--show</dt> * <dd> *************** *** 65,68 **** --- 70,75 ---- */ public class BuildWindowFromXmlFile { + private boolean showAtEnd; + ///CLOVER:OFF /** *************** *** 83,101 **** in.setSystemId(new File(path).toURL().toString()); ! Component window = builder.build(in); } ! private static void printUsage(String error) { ! System.err.print("Error: "); ! System.err.println(error); ! System.err.println("Usage:"); ! System.err.println(" java jgb.BuildWindowFromXmlFile [--verbose|-v] [--show] <xml file>"); ! System.err.println("where"); ! System.err.println(" --show is asking for the packing and setting "); ! System.err.println(" the visiblity of the built window"); ! System.err.println(" --verbose or -v is asking for the Builder to be verbose"); ! System.err.println(" and <xml file> is the path to an XML file which should be processed"); } - ///CLOVER:ON /** --- 90,109 ---- in.setSystemId(new File(path).toURL().toString()); ! processor.start(builder,in); } + ///CLOVER:ON ! public void printUsage(PrintWriter out, InvalidParameterException exception) { ! out.print("Error: "); ! out.println(exception.getMessage()); ! out.println("Usage:"); ! out.println(" java jgb.BuildWindowFromXmlFile [--verbose|-v] [--show] <xml file>"); ! out.println("where"); ! out.println(" --show is asking for the packing and setting "); ! out.println(" the visiblity of the built window"); ! out.println(" --verbose or -v is asking for the Builder to be verbose"); ! out.println(" --quiet or -q is asking for the Builder to be quiet"); ! out.println(" and <xml file> is the path to an XML file which should be processed"); } /** *************** *** 126,129 **** --- 134,139 ---- || arg.equals("-q")) { builder.setQuiet(true); + } else if (arg.equals("--show")) { + showAtEnd = true; } else if (arg.startsWith("-")) { throw new UnknownArgumentException(arg); |
|
From: <fb...@us...> - 2003-06-29 02:42:42
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb
In directory sc8-pr-cvs1:/tmp/cvs-serv30004/src/java/core/jgb
Modified Files:
BuildWindowFromXmlFile.java
Log Message:
* src/java/core/jgb/builder/Builder.java:
Changed build() method signature to return Component instead of JWindow.
JWindow is not a super class of JFrame or JDialog. Component is.
* src/java/core/jgb/BuildWindowFromXmlFile.java,
src/java/core/jgb/builder/DefaultBuilder.java,
src/java/tests/jgb/TestBuildWindowFromXmlFile.java,
src/java/tests/jgb/builder/AbstractBuilderTest.java:
Implemented method signature change from JWindow to Component.
Index: BuildWindowFromXmlFile.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/BuildWindowFromXmlFile.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** BuildWindowFromXmlFile.java 27 Jun 2003 20:49:50 -0000 1.14
--- BuildWindowFromXmlFile.java 29 Jun 2003 02:42:38 -0000 1.15
***************
*** 32,35 ****
--- 32,36 ----
import java.util.LinkedList;
import java.util.List;
+ import java.awt.*;
/**
***************
*** 82,86 ****
in.setSystemId(new File(path).toURL().toString());
! JWindow window = builder.build(in);
}
--- 83,87 ----
in.setSystemId(new File(path).toURL().toString());
! Component window = builder.build(in);
}
***************
*** 117,121 ****
final List copiedArgs = new LinkedList(args);
for (Iterator iterator = copiedArgs.iterator(); iterator.hasNext();) {
! final String arg = (String) iterator.next();
if (arg.equals("--verbose")
--- 118,122 ----
final List copiedArgs = new LinkedList(args);
for (Iterator iterator = copiedArgs.iterator(); iterator.hasNext();) {
! final String arg = (String)iterator.next();
if (arg.equals("--verbose")
***************
*** 141,145 ****
}
! File file = new File((String) copiedArgs.get(0));
if (false == file.exists()) {
throw new FileNotFoundException(
--- 142,146 ----
}
! File file = new File((String)copiedArgs.get(0));
if (false == file.exists()) {
throw new FileNotFoundException(
***************
*** 150,154 ****
}
! public JWindow start(Builder b, InputSource in) throws IOException, SAXException {
return b.build(in);
}
--- 151,155 ----
}
! public Component start(Builder b, InputSource in) throws IOException, SAXException {
return b.build(in);
}
|
|
From: <fb...@us...> - 2003-06-29 02:42:41
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb In directory sc8-pr-cvs1:/tmp/cvs-serv30004/src/java/tests/jgb Modified Files: TestBuildWindowFromXmlFile.java Log Message: * src/java/core/jgb/builder/Builder.java: Changed build() method signature to return Component instead of JWindow. JWindow is not a super class of JFrame or JDialog. Component is. * src/java/core/jgb/BuildWindowFromXmlFile.java, src/java/core/jgb/builder/DefaultBuilder.java, src/java/tests/jgb/TestBuildWindowFromXmlFile.java, src/java/tests/jgb/builder/AbstractBuilderTest.java: Implemented method signature change from JWindow to Component. Index: TestBuildWindowFromXmlFile.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/TestBuildWindowFromXmlFile.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestBuildWindowFromXmlFile.java 27 Jun 2003 20:49:50 -0000 1.3 --- TestBuildWindowFromXmlFile.java 29 Jun 2003 02:42:38 -0000 1.4 *************** *** 30,33 **** --- 30,34 ---- import java.util.Collections; import java.io.*; + import java.awt.*; import org.xml.sax.*; *************** *** 50,54 **** mockBuilder.expect("setVerbose", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); --- 51,55 ---- mockBuilder.expect("setVerbose", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); *************** *** 64,68 **** mockBuilder.expect("setVerbose", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); --- 65,69 ---- mockBuilder.expect("setVerbose", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); *************** *** 78,82 **** mockBuilder.expect("setQuiet", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); --- 79,83 ---- mockBuilder.expect("setQuiet", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); *************** *** 92,96 **** mockBuilder.expect("setQuiet", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); --- 93,97 ---- mockBuilder.expect("setQuiet", C.eq(new Boolean(true))); windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), new ArrayList(Arrays.asList(args))); *************** *** 101,105 **** try { windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), Collections.EMPTY_LIST); fail("Failed to complain about missing argument"); --- 102,106 ---- try { windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), Collections.EMPTY_LIST); fail("Failed to complain about missing argument"); *************** *** 116,120 **** try { windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), Arrays.asList(args)); fail("Failed to complain about unknown argument"); --- 117,121 ---- try { windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), Arrays.asList(args)); fail("Failed to complain about unknown argument"); *************** *** 131,135 **** try { windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), Arrays.asList(args)); fail("Failed to complain that file does not exist"); --- 132,136 ---- try { windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), Arrays.asList(args)); fail("Failed to complain that file does not exist"); *************** *** 147,151 **** try { windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), Arrays.asList(args)); fail("Failed to complain that there are too many arguments"); --- 148,152 ---- try { windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), Arrays.asList(args)); fail("Failed to complain that there are too many arguments"); *************** *** 161,165 **** final String absolutePath = windowBuilder.processArguments( ! (Builder) mockBuilder.proxy(), Arrays.asList(args)); --- 162,166 ---- final String absolutePath = windowBuilder.processArguments( ! (Builder)mockBuilder.proxy(), Arrays.asList(args)); *************** *** 172,247 **** final InputSource source = new InputSource(); mockBuilder.expectAndReturn("build", C.same(source), window); ! final JWindow builtWindow = windowBuilder.start( ! new Builder() { ! public void setQuiet(boolean quiet) { ! } ! ! public void setVerbose(boolean verbose) { ! } ! ! public JWindow build(InputStream in) throws IOException, SAXException { ! return null; ! } ! ! public JWindow build(InputSource in) throws IOException, SAXException { ! assertSame(source,in); ! return window; ! } ! ! public void setLoggingStream(PrintWriter logStream) { ! } ! ! public void addResolver(EntityResolver resolver) { ! } ! ! public void setDocumentLocator(Locator locator) { ! } ! ! public void startDocument() ! throws SAXException { ! } ! ! public void endDocument() ! throws SAXException { ! } ! ! public void startPrefixMapping(String prefix, String uri) ! throws SAXException { ! } ! ! public void endPrefixMapping(String prefix) ! throws SAXException { ! } ! ! public void startElement(String namespaceURI, String localName, ! String qName, Attributes atts) ! throws SAXException { ! } ! ! public void endElement(String namespaceURI, String localName, ! String qName) ! throws SAXException { ! } ! ! public void characters(char ch[], int start, int length) ! throws SAXException { ! } ! ! public void ignorableWhitespace(char ch[], int start, int length) ! throws SAXException { ! } ! ! public void processingInstruction(String target, String data) ! throws SAXException { ! } ! ! public void skippedEntity(String name) ! throws SAXException { ! } ! ! public Object getObject(String name) { ! return null; ! } ! } , source); mockBuilder.verify(); assertSame("Returns the window that was returned from the builder", --- 173,178 ---- final InputSource source = new InputSource(); mockBuilder.expectAndReturn("build", C.same(source), window); ! final Component builtWindow = windowBuilder.start( ! (Builder)mockBuilder.proxy(), source); mockBuilder.verify(); assertSame("Returns the window that was returned from the builder", |
|
From: <fb...@us...> - 2003-06-29 02:42:41
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb/builder
In directory sc8-pr-cvs1:/tmp/cvs-serv30004/src/java/core/jgb/builder
Modified Files:
Builder.java DefaultBuilder.java
Log Message:
* src/java/core/jgb/builder/Builder.java:
Changed build() method signature to return Component instead of JWindow.
JWindow is not a super class of JFrame or JDialog. Component is.
* src/java/core/jgb/BuildWindowFromXmlFile.java,
src/java/core/jgb/builder/DefaultBuilder.java,
src/java/tests/jgb/TestBuildWindowFromXmlFile.java,
src/java/tests/jgb/builder/AbstractBuilderTest.java:
Implemented method signature change from JWindow to Component.
Index: Builder.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/Builder.java,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** Builder.java 27 Jun 2003 20:49:50 -0000 1.27
--- Builder.java 29 Jun 2003 02:42:38 -0000 1.28
***************
*** 29,32 ****
--- 29,33 ----
import java.io.InputStream;
import java.io.PrintWriter;
+ import java.awt.*;
public interface Builder extends ContentHandler, WindowContext {
***************
*** 72,76 ****
* <code>null</code>.
*/
! JWindow build(InputStream in) throws IOException, SAXException;
/**
--- 73,77 ----
* <code>null</code>.
*/
! Component build(InputStream in) throws IOException, SAXException;
/**
***************
*** 84,88 ****
* <code>null</code>.
*/
! JWindow build(InputSource in) throws IOException, SAXException;
/**
--- 85,89 ----
* <code>null</code>.
*/
! Component build(InputSource in) throws IOException, SAXException;
/**
Index: DefaultBuilder.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/DefaultBuilder.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** DefaultBuilder.java 27 Jun 2003 20:49:50 -0000 1.4
--- DefaultBuilder.java 29 Jun 2003 02:42:38 -0000 1.5
***************
*** 33,36 ****
--- 33,38 ----
import java.io.PrintWriter;
import java.util.*;
+ import java.util.List;
+ import java.awt.*;
***************
*** 76,80 ****
}
! public JWindow build(InputStream in) throws IOException, SAXException {
if (null == in) {
throw new IllegalArgumentException("in must not be null");
--- 78,82 ----
}
! public Component build(InputStream in) throws IOException, SAXException {
if (null == in) {
throw new IllegalArgumentException("in must not be null");
***************
*** 84,88 ****
}
! public JWindow build(InputSource in) throws IOException, SAXException {
SAXParserFactory factory = SAXParserFactory.newInstance();
factory.setValidating(true);
--- 86,90 ----
}
! public Component build(InputSource in) throws IOException, SAXException {
SAXParserFactory factory = SAXParserFactory.newInstance();
factory.setValidating(true);
|
|
From: <fb...@us...> - 2003-06-29 02:42:41
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/builder
In directory sc8-pr-cvs1:/tmp/cvs-serv30004/src/java/tests/jgb/builder
Modified Files:
AbstractBuilderTest.java
Log Message:
* src/java/core/jgb/builder/Builder.java:
Changed build() method signature to return Component instead of JWindow.
JWindow is not a super class of JFrame or JDialog. Component is.
* src/java/core/jgb/BuildWindowFromXmlFile.java,
src/java/core/jgb/builder/DefaultBuilder.java,
src/java/tests/jgb/TestBuildWindowFromXmlFile.java,
src/java/tests/jgb/builder/AbstractBuilderTest.java:
Implemented method signature change from JWindow to Component.
Index: AbstractBuilderTest.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/AbstractBuilderTest.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AbstractBuilderTest.java 27 Jun 2003 16:45:49 -0000 1.2
--- AbstractBuilderTest.java 29 Jun 2003 02:42:38 -0000 1.3
***************
*** 20,23 ****
--- 20,25 ----
package jgb.builder;
+ import com.mockobjects.dynamic.C;
+ import com.mockobjects.dynamic.Mock;
import jgb.mocks.MockInputStream;
import jgb.testutils.MultiParamClass;
***************
*** 25,44 ****
import jgb.testutils.XmlSourceInputStream;
import junit.framework.TestCase;
- import org.xml.sax.SAXException;
- import org.xml.sax.SAXParseException;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
import java.io.IOException;
import java.io.InputStream;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Random;
- import java.net.MalformedURLException;
- import java.net.ConnectException;
-
- import com.mockobjects.dynamic.Mock;
- import com.mockobjects.dynamic.C;
--- 27,42 ----
import jgb.testutils.XmlSourceInputStream;
import junit.framework.TestCase;
import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
+ import org.xml.sax.SAXException;
import java.io.IOException;
import java.io.InputStream;
+ import java.net.ConnectException;
+ import java.net.MalformedURLException;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Random;
***************
*** 210,214 ****
public void testNullInputStreamGeneratesException() throws Exception {
try {
! builder.build(null);
fail();
} catch (IllegalArgumentException success) {
--- 208,212 ----
public void testNullInputStreamGeneratesException() throws Exception {
try {
! builder.build((InputStream)null);
fail();
} catch (IllegalArgumentException success) {
|
|
From: <fb...@us...> - 2003-06-27 20:52:38
|
Update of /cvsroot/jgb/jgb/clover_history
In directory sc8-pr-cvs1:/tmp/cvs-serv21879/clover_history
Added Files:
clover-20030625163148.xml clover-20030627102015.xml
clover-20030627102828.xml clover-20030627134840.xml
clover-20030627135327.xml clover-20030627141554.xml
clover-20030627143045.xml clover-20030627143539.xml
Log Message:
* clover_history/clover-20030625163148.xml,
clover_history/clover-20030627102015.xml,
clover_history/clover-20030627102828.xml,
clover_history/clover-20030627134840.xml,
clover_history/clover-20030627135327.xml,
clover_history/clover-20030627141554.xml,
clover_history/clover-20030627143045.xml,
clover_history/clover-20030627143539.xml:
Some more data points for Clover coverage.
--- NEW FILE: clover-20030625163148.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<coverage clover="1.2" generated="1056573110425">
<project timestamp="1056573076977">
<metrics packages="5" files="52" classes="55" loc="4154" ncloc="2175" methods="213" elements="1452" statements="931" conditionals="308" coveredmethods="199" coveredelements="1319" coveredstatements="842" coveredconditionals="278"/>
<package name="jgb.builder">
<metrics files="6" classes="6" loc="764" ncloc="235" methods="20" elements="123" statements="77" conditionals="26" coveredmethods="17" coveredelements="90" coveredstatements="58" coveredconditionals="15"/>
<file name="E:\java\jgb\src\java\core\jgb\builder\JgbEntityResolver.java">
<class name="JgbEntityResolver">
<metrics methods="3" elements="19" statements="12" conditionals="4" coveredmethods="3" coveredelements="19" coveredstatements="12" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="42" ncloc="33" methods="3" elements="19" statements="12" conditionals="4" coveredmethods="3" coveredelements="19" coveredstatements="12" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\TagHandler.java">
<class name="TagHandler">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="348" ncloc="29" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\WindowContext.java">
<class name="WindowContext">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="6" ncloc="4" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\Builder.java">
<class name="Builder">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="89" ncloc="15" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\TagHandlerFactory.java">
<class name="TagHandlerFactory">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="21" ncloc="4" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\DefaultBuilder.java">
<class name="DefaultBuilder">
<metrics methods="17" elements="104" statements="65" conditionals="22" coveredmethods="14" coveredelements="71" coveredstatements="46" coveredconditionals="11"/>
</class>
<metrics classes="1" loc="258" ncloc="150" methods="17" elements="104" statements="65" conditionals="22" coveredmethods="14" coveredelements="71" coveredstatements="46" coveredconditionals="11"/>
</file>
</package>
<package name="jgb">
<metrics files="2" classes="2" loc="279" ncloc="146" methods="12" elements="93" statements="65" conditionals="16" coveredmethods="10" coveredelements="50" coveredstatements="34" coveredconditionals="6"/>
<file name="E:\java\jgb\src\java\core\jgb\BuildWindowFromXmlFile.java">
<class name="BuildWindowFromXmlFile">
<metrics methods="2" elements="42" statements="30" conditionals="10" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="113" ncloc="49" methods="2" elements="42" statements="30" conditionals="10" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\ValidateFile.java">
<class name="ValidateFile">
<metrics methods="10" elements="51" statements="35" conditionals="6" coveredmethods="10" coveredelements="50" coveredstatements="34" coveredconditionals="6"/>
</class>
<metrics classes="1" loc="166" ncloc="97" methods="10" elements="51" statements="35" conditionals="6" coveredmethods="10" coveredelements="50" coveredstatements="34" coveredconditionals="6"/>
</file>
</package>
<package name="jgb.factories.swing">
<metrics files="1" classes="1" loc="82" ncloc="41" methods="4" elements="26" statements="18" conditionals="4" coveredmethods="4" coveredelements="25" coveredstatements="17" coveredconditionals="4"/>
<file name="E:\java\jgb\src\java\core\jgb\factories\swing\PackageTagHandlerFactory.java">
<class name="PackageTagHandlerFactory">
<metrics methods="4" elements="26" statements="18" conditionals="4" coveredmethods="4" coveredelements="25" coveredstatements="17" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="82" ncloc="41" methods="4" elements="26" statements="18" conditionals="4" coveredmethods="4" coveredelements="25" coveredstatements="17" coveredconditionals="4"/>
</file>
</package>
<package name="jgb.builder.utils">
<metrics files="6" classes="8" loc="494" ncloc="342" methods="51" elements="255" statements="148" conditionals="56" coveredmethods="50" coveredelements="244" coveredstatements="140" coveredconditionals="54"/>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\MethodCall.java">
<class name="MethodCall">
<metrics methods="9" elements="69" statements="42" conditionals="18" coveredmethods="9" coveredelements="65" coveredstatements="38" coveredconditionals="18"/>
</class>
<metrics classes="1" loc="115" ncloc="88" methods="9" elements="69" statements="42" conditionals="18" coveredmethods="9" coveredelements="65" coveredstatements="38" coveredconditionals="18"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\KeyStrokeParser.java">
<class name="KeyStrokeParser">
<metrics methods="1" elements="32" statements="19" conditionals="12" coveredmethods="1" coveredelements="30" coveredstatements="18" coveredconditionals="11"/>
</class>
<metrics classes="1" loc="54" ncloc="31" methods="1" elements="32" statements="19" conditionals="12" coveredmethods="1" coveredelements="30" coveredstatements="18" coveredconditionals="11"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\AttributesMapAdapter.java">
<class name="AttributesMapAdapter">
<metrics methods="14" elements="34" statements="18" conditionals="2" coveredmethods="14" coveredelements="34" coveredstatements="18" coveredconditionals="2"/>
</class>
<class name="AttributesMapAdapter.MapEntry">
<metrics methods="6" elements="19" statements="11" conditionals="2" coveredmethods="6" coveredelements="19" coveredstatements="11" coveredconditionals="2"/>
</class>
<metrics classes="2" loc="115" ncloc="85" methods="20" elements="53" statements="29" conditionals="4" coveredmethods="20" coveredelements="53" coveredstatements="29" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\ParametersAccumulator.java">
<class name="ParametersAccumulator">
<metrics methods="7" elements="34" statements="19" conditionals="8" coveredmethods="6" coveredelements="30" coveredstatements="17" coveredconditionals="7"/>
</class>
<metrics classes="1" loc="61" ncloc="44" methods="7" elements="34" statements="19" conditionals="8" coveredmethods="6" coveredelements="30" coveredstatements="17" coveredconditionals="7"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\ConstructorCall.java">
<class name="ConstructorCall">
<metrics methods="3" elements="35" statements="22" conditionals="10" coveredmethods="3" coveredelements="34" coveredstatements="21" coveredconditionals="10"/>
</class>
<metrics classes="1" loc="78" ncloc="42" methods="3" elements="35" statements="22" conditionals="10" coveredmethods="3" coveredelements="34" coveredstatements="21" coveredconditionals="10"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\CurrentObjectsStackManager.java">
<class name="CurrentObjectsStackManager">
<metrics methods="8" elements="25" statements="13" conditionals="4" coveredmethods="8" coveredelements="25" coveredstatements="13" coveredconditionals="4"/>
</class>
<class name="CurrentObjectsStackManager.CurrentObject">
<metrics methods="3" elements="7" statements="4" conditionals="0" coveredmethods="3" coveredelements="7" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="2" loc="71" ncloc="52" methods="11" elements="32" statements="17" conditionals="4" coveredmethods="11" coveredelements="32" coveredstatements="17" coveredconditionals="4"/>
</file>
</package>
<package name="jgb.handlers.swing">
<metrics files="37" classes="38" loc="2535" ncloc="1411" methods="126" elements="955" statements="623" conditionals="206" coveredmethods="118" coveredelements="910" coveredstatements="593" coveredconditionals="199"/>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ParameterTagHandler.java">
<class name="ParameterTagHandler">
<metrics methods="2" elements="12" statements="8" conditionals="2" coveredmethods="2" coveredelements="12" coveredstatements="8" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="57" ncloc="21" methods="2" elements="12" statements="8" conditionals="2" coveredmethods="2" coveredelements="12" coveredstatements="8" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\RadioTagHandler.java">
<class name="RadioTagHandler">
<metrics methods="3" elements="32" statements="19" conditionals="10" coveredmethods="2" coveredelements="30" coveredstatements="18" coveredconditionals="10"/>
</class>
<metrics classes="1" loc="52" ncloc="37" methods="3" elements="32" statements="19" conditionals="10" coveredmethods="2" coveredelements="30" coveredstatements="18" coveredconditionals="10"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ControlTagHandler.java">
<class name="ControlTagHandler">
<metrics methods="4" elements="29" statements="19" conditionals="6" coveredmethods="4" coveredelements="27" coveredstatements="18" coveredconditionals="5"/>
</class>
<metrics classes="1" loc="77" ncloc="40" methods="4" elements="29" statements="19" conditionals="6" coveredmethods="4" coveredelements="27" coveredstatements="18" coveredconditionals="5"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ConstructorTagHandler.java">
<class name="ConstructorTagHandler">
<metrics methods="2" elements="14" statements="12" conditionals="0" coveredmethods="2" coveredelements="14" coveredstatements="12" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="58" ncloc="25" methods="2" elements="14" statements="12" conditionals="0" coveredmethods="2" coveredelements="14" coveredstatements="12" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ButtonTagHandler.java">
<class name="ButtonTagHandler">
<metrics methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="40" ncloc="29" methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ConstraintsTagHandler.java">
<class name="ConstraintsTagHandler">
<metrics methods="2" elements="14" statements="8" conditionals="4" coveredmethods="2" coveredelements="14" coveredstatements="8" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="59" ncloc="24" methods="2" elements="14" statements="8" conditionals="4" coveredmethods="2" coveredelements="14" coveredstatements="8" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\GlueTagHandler.java">
<class name="GlueTagHandler">
<metrics methods="3" elements="18" statements="11" conditionals="4" coveredmethods="3" coveredelements="18" coveredstatements="11" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="55" ncloc="31" methods="3" elements="18" statements="11" conditionals="4" coveredmethods="3" coveredelements="18" coveredstatements="11" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\AbstractControlTagHandler.java">
<class name="AbstractControlTagHandler">
<metrics methods="8" elements="39" statements="23" conditionals="8" coveredmethods="8" coveredelements="39" coveredstatements="23" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="167" ncloc="59" methods="8" elements="39" statements="23" conditionals="8" coveredmethods="8" coveredelements="39" coveredstatements="23" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\MenuBarTagHandler.java">
<class name="MenuBarTagHandler">
<metrics methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="38" ncloc="21" methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ConstantTagHandler.java">
<class name="ConstantTagHandler">
<metrics methods="5" elements="32" statements="23" conditionals="4" coveredmethods="5" coveredelements="32" coveredstatements="23" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="99" ncloc="49" methods="5" elements="32" statements="23" conditionals="4" coveredmethods="5" coveredelements="32" coveredstatements="23" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\GridbagTagHandler.java">
<class name="GridbagTagHandler">
<metrics methods="5" elements="84" statements="63" conditionals="16" coveredmethods="5" coveredelements="71" coveredstatements="51" coveredconditionals="15"/>
</class>
<metrics classes="1" loc="146" ncloc="122" methods="5" elements="84" statements="63" conditionals="16" coveredmethods="5" coveredelements="71" coveredstatements="51" coveredconditionals="15"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\BorderTagHandler.java">
<class name="BorderTagHandler">
<metrics methods="3" elements="7" statements="4" conditionals="0" coveredmethods="3" coveredelements="7" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="24" ncloc="17" methods="3" elements="7" statements="4" conditionals="0" coveredmethods="3" coveredelements="7" coveredstatements="4" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\MenuTagHandler.java">
<class name="MenuTagHandler">
<metrics methods="3" elements="16" statements="9" conditionals="4" coveredmethods="3" coveredelements="16" coveredstatements="9" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="34" ncloc="23" methods="3" elements="16" statements="9" conditionals="4" coveredmethods="3" coveredelements="16" coveredstatements="9" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ControlsTagHandler.java">
<class name="ControlsTagHandler">
<metrics methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="22" coveredstatements="14" coveredconditionals="6"/>
</class>
<metrics classes="1" loc="62" ncloc="31" methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="22" coveredstatements="14" coveredconditionals="6"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\SheetTagHandler.java">
<class name="SheetTagHandler">
<metrics methods="3" elements="24" statements="13" conditionals="8" coveredmethods="3" coveredelements="24" coveredstatements="13" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="37" ncloc="29" methods="3" elements="24" statements="13" conditionals="8" coveredmethods="3" coveredelements="24" coveredstatements="13" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\CheckTagHandler.java">
<class name="CheckTagHandler">
<metrics methods="3" elements="29" statements="16" conditionals="10" coveredmethods="2" coveredelements="27" coveredstatements="15" coveredconditionals="10"/>
</class>
<metrics classes="1" loc="47" ncloc="33" methods="3" elements="29" statements="16" conditionals="10" coveredmethods="2" coveredelements="27" coveredstatements="15" coveredconditionals="10"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\AbstractTagHandler.java">
<class name="AbstractTagHandler">
<metrics methods="16" elements="72" statements="48" conditionals="8" coveredmethods="16" coveredelements="69" coveredstatements="45" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="212" ncloc="111" methods="16" elements="72" statements="48" conditionals="8" coveredmethods="16" coveredelements="69" coveredstatements="45" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ValueTagHandler.java">
<class name="ValueTagHandler">
<metrics methods="2" elements="41" statements="21" conditionals="18" coveredmethods="2" coveredelements="39" coveredstatements="20" coveredconditionals="17"/>
</class>
<metrics classes="1" loc="118" ncloc="43" methods="2" elements="41" statements="21" conditionals="18" coveredmethods="2" coveredelements="39" coveredstatements="20" coveredconditionals="17"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ItemTagHandler.java">
<class name="ItemTagHandler">
<metrics methods="3" elements="52" statements="29" conditionals="20" coveredmethods="2" coveredelements="49" coveredstatements="28" coveredconditionals="19"/>
</class>
<metrics classes="1" loc="91" ncloc="59" methods="3" elements="52" statements="29" conditionals="20" coveredmethods="2" coveredelements="49" coveredstatements="28" coveredconditionals="19"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\LayoutTagHandler.java">
<class name="LayoutTagHandler">
<metrics methods="3" elements="15" statements="12" conditionals="0" coveredmethods="3" coveredelements="15" coveredstatements="12" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="62" ncloc="28" methods="3" elements="15" statements="12" conditionals="0" coveredmethods="3" coveredelements="15" coveredstatements="12" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\PanelTagHandler.java">
<class name="PanelTagHandler">
<metrics methods="4" elements="52" statements="40" conditionals="8" coveredmethods="4" coveredelements="50" coveredstatements="38" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="118" ncloc="81" methods="4" elements="52" statements="40" conditionals="8" coveredmethods="4" coveredelements="50" coveredstatements="38" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\NullTagHandler.java">
<class name="NullTagHandler">
<metrics methods="2" elements="7" statements="5" conditionals="0" coveredmethods="1" coveredelements="5" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="43" ncloc="17" methods="2" elements="7" statements="5" conditionals="0" coveredmethods="1" coveredelements="5" coveredstatements="4" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ReturnTagHandler.java">
<class name="ReturnTagHandler">
<metrics methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="26" ncloc="16" methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ObjectTagHandler.java">
<class name="ObjectTagHandler">
<metrics methods="3" elements="14" statements="11" conditionals="0" coveredmethods="3" coveredelements="13" coveredstatements="10" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="60" ncloc="26" methods="3" elements="14" statements="11" conditionals="0" coveredmethods="3" coveredelements="13" coveredstatements="10" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\SeparatorTagHandler.java">
<class name="SeparatorTagHandler">
<metrics methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="32" ncloc="21" methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ComboTagHandler.java">
<class name="ComboTagHandler">
<metrics methods="3" elements="37" statements="22" conditionals="12" coveredmethods="2" coveredelements="34" coveredstatements="21" coveredconditionals="11"/>
</class>
<metrics classes="1" loc="60" ncloc="44" methods="3" elements="37" statements="22" conditionals="12" coveredmethods="2" coveredelements="34" coveredstatements="21" coveredconditionals="11"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\TabTagHandler.java">
<class name="TabTagHandler">
<metrics methods="1" elements="12" statements="9" conditionals="2" coveredmethods="1" coveredelements="12" coveredstatements="9" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="30" ncloc="21" methods="1" elements="12" statements="9" conditionals="2" coveredmethods="1" coveredelements="12" coveredstatements="9" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\PropertyTagHandler.java">
<class name="PropertyTagHandler">
<metrics methods="3" elements="23" statements="18" conditionals="2" coveredmethods="3" coveredelements="23" coveredstatements="18" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="74" ncloc="34" methods="3" elements="23" statements="18" conditionals="2" coveredmethods="3" coveredelements="23" coveredstatements="18" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\WindowTagHandler.java">
<class name="WindowTagHandler">
<metrics methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="20" coveredstatements="14" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="79" ncloc="31" methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="20" coveredstatements="14" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\TextfieldTagHandler.java">
<class name="TextfieldTagHandler">
<metrics methods="3" elements="43" statements="24" conditionals="16" coveredmethods="2" coveredelements="41" coveredstatements="23" coveredconditionals="16"/>
</class>
<metrics classes="1" loc="67" ncloc="47" methods="3" elements="43" statements="24" conditionals="16" coveredmethods="2" coveredelements="41" coveredstatements="23" coveredconditionals="16"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\WindowsTagHandler.java">
<class name="WindowsTagHandler">
<metrics methods="2" elements="2" statements="0" conditionals="0" coveredmethods="2" coveredelements="2" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="39" ncloc="9" methods="2" elements="2" statements="0" conditionals="0" coveredmethods="2" coveredelements="2" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\MethodCallTagHandler.java">
<class name="MethodCallTagHandler">
<metrics methods="7" elements="35" statements="26" conditionals="2" coveredmethods="7" coveredelements="33" coveredstatements="24" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="95" ncloc="56" methods="7" elements="35" statements="26" conditionals="2" coveredmethods="7" coveredelements="33" coveredstatements="24" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\RegisterTagHandler.java">
<class name="RegisterTagHandler">
<metrics methods="2" elements="29" statements="25" conditionals="2" coveredmethods="2" coveredelements="29" coveredstatements="25" coveredconditionals="2"/>
</class>
<class name="RegisterTagHandler.EventReflector">
<metrics methods="2" elements="11" statements="7" conditionals="2" coveredmethods="2" coveredelements="11" coveredstatements="7" coveredconditionals="2"/>
</class>
<metrics classes="2" loc="103" ncloc="90" methods="4" elements="40" statements="32" conditionals="4" coveredmethods="4" coveredelements="40" coveredstatements="32" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\AbstractValueTagHandler.java">
<class name="AbstractValueTagHandler">
<metrics methods="1" elements="3" statements="2" conditionals="0" coveredmethods="1" coveredelements="3" coveredstatements="2" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="34" ncloc="7" methods="1" elements="3" statements="2" conditionals="0" coveredmethods="1" coveredelements="3" coveredstatements="2" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\StrutTagHandler.java">
<class name="StrutTagHandler">
<metrics methods="3" elements="27" statements="18" conditionals="6" coveredmethods="3" coveredelements="27" coveredstatements="18" coveredconditionals="6"/>
</class>
<metrics classes="1" loc="57" ncloc="36" methods="3" elements="27" statements="18" conditionals="6" coveredmethods="3" coveredelements="27" coveredstatements="18" coveredconditionals="6"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\LabelTagHandler.java">
<class name="LabelTagHandler">
<metrics methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="39" ncloc="29" methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\RefTagHandler.java">
<class name="RefTagHandler">
<metrics methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="44" ncloc="14" methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</file>
</package>
</project>
</coverage>
--- NEW FILE: clover-20030627102015.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<coverage clover="1.2" generated="1056723623632">
<project timestamp="1056723588702">
<metrics packages="5" files="52" classes="55" loc="4154" ncloc="2175" methods="213" elements="1452" statements="931" conditionals="308" coveredmethods="199" coveredelements="1320" coveredstatements="843" coveredconditionals="278"/>
<package name="jgb.builder">
<metrics files="6" classes="6" loc="764" ncloc="235" methods="20" elements="123" statements="77" conditionals="26" coveredmethods="17" coveredelements="90" coveredstatements="58" coveredconditionals="15"/>
<file name="E:\java\jgb\src\java\core\jgb\builder\JgbEntityResolver.java">
<class name="JgbEntityResolver">
<metrics methods="3" elements="19" statements="12" conditionals="4" coveredmethods="3" coveredelements="19" coveredstatements="12" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="42" ncloc="33" methods="3" elements="19" statements="12" conditionals="4" coveredmethods="3" coveredelements="19" coveredstatements="12" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\TagHandler.java">
<class name="TagHandler">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="348" ncloc="29" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\WindowContext.java">
<class name="WindowContext">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="6" ncloc="4" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\Builder.java">
<class name="Builder">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="89" ncloc="15" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\TagHandlerFactory.java">
<class name="TagHandlerFactory">
<metrics methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="21" ncloc="4" methods="0" elements="0" statements="0" conditionals="0" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\DefaultBuilder.java">
<class name="DefaultBuilder">
<metrics methods="17" elements="104" statements="65" conditionals="22" coveredmethods="14" coveredelements="71" coveredstatements="46" coveredconditionals="11"/>
</class>
<metrics classes="1" loc="258" ncloc="150" methods="17" elements="104" statements="65" conditionals="22" coveredmethods="14" coveredelements="71" coveredstatements="46" coveredconditionals="11"/>
</file>
</package>
<package name="jgb">
<metrics files="2" classes="2" loc="279" ncloc="146" methods="12" elements="93" statements="65" conditionals="16" coveredmethods="10" coveredelements="50" coveredstatements="34" coveredconditionals="6"/>
<file name="E:\java\jgb\src\java\core\jgb\ValidateFile.java">
<class name="ValidateFile">
<metrics methods="10" elements="51" statements="35" conditionals="6" coveredmethods="10" coveredelements="50" coveredstatements="34" coveredconditionals="6"/>
</class>
<metrics classes="1" loc="166" ncloc="97" methods="10" elements="51" statements="35" conditionals="6" coveredmethods="10" coveredelements="50" coveredstatements="34" coveredconditionals="6"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\BuildWindowFromXmlFile.java">
<class name="BuildWindowFromXmlFile">
<metrics methods="2" elements="42" statements="30" conditionals="10" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="113" ncloc="49" methods="2" elements="42" statements="30" conditionals="10" coveredmethods="0" coveredelements="0" coveredstatements="0" coveredconditionals="0"/>
</file>
</package>
<package name="jgb.factories.swing">
<metrics files="1" classes="1" loc="82" ncloc="41" methods="4" elements="26" statements="18" conditionals="4" coveredmethods="4" coveredelements="25" coveredstatements="17" coveredconditionals="4"/>
<file name="E:\java\jgb\src\java\core\jgb\factories\swing\PackageTagHandlerFactory.java">
<class name="PackageTagHandlerFactory">
<metrics methods="4" elements="26" statements="18" conditionals="4" coveredmethods="4" coveredelements="25" coveredstatements="17" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="82" ncloc="41" methods="4" elements="26" statements="18" conditionals="4" coveredmethods="4" coveredelements="25" coveredstatements="17" coveredconditionals="4"/>
</file>
</package>
<package name="jgb.builder.utils">
<metrics files="6" classes="8" loc="494" ncloc="342" methods="51" elements="255" statements="148" conditionals="56" coveredmethods="50" coveredelements="244" coveredstatements="140" coveredconditionals="54"/>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\MethodCall.java">
<class name="MethodCall">
<metrics methods="9" elements="69" statements="42" conditionals="18" coveredmethods="9" coveredelements="65" coveredstatements="38" coveredconditionals="18"/>
</class>
<metrics classes="1" loc="115" ncloc="88" methods="9" elements="69" statements="42" conditionals="18" coveredmethods="9" coveredelements="65" coveredstatements="38" coveredconditionals="18"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\KeyStrokeParser.java">
<class name="KeyStrokeParser">
<metrics methods="1" elements="32" statements="19" conditionals="12" coveredmethods="1" coveredelements="30" coveredstatements="18" coveredconditionals="11"/>
</class>
<metrics classes="1" loc="54" ncloc="31" methods="1" elements="32" statements="19" conditionals="12" coveredmethods="1" coveredelements="30" coveredstatements="18" coveredconditionals="11"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\AttributesMapAdapter.java">
<class name="AttributesMapAdapter">
<metrics methods="14" elements="34" statements="18" conditionals="2" coveredmethods="14" coveredelements="34" coveredstatements="18" coveredconditionals="2"/>
</class>
<class name="AttributesMapAdapter.MapEntry">
<metrics methods="6" elements="19" statements="11" conditionals="2" coveredmethods="6" coveredelements="19" coveredstatements="11" coveredconditionals="2"/>
</class>
<metrics classes="2" loc="115" ncloc="85" methods="20" elements="53" statements="29" conditionals="4" coveredmethods="20" coveredelements="53" coveredstatements="29" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\ParametersAccumulator.java">
<class name="ParametersAccumulator">
<metrics methods="7" elements="34" statements="19" conditionals="8" coveredmethods="6" coveredelements="30" coveredstatements="17" coveredconditionals="7"/>
</class>
<metrics classes="1" loc="61" ncloc="44" methods="7" elements="34" statements="19" conditionals="8" coveredmethods="6" coveredelements="30" coveredstatements="17" coveredconditionals="7"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\ConstructorCall.java">
<class name="ConstructorCall">
<metrics methods="3" elements="35" statements="22" conditionals="10" coveredmethods="3" coveredelements="34" coveredstatements="21" coveredconditionals="10"/>
</class>
<metrics classes="1" loc="78" ncloc="42" methods="3" elements="35" statements="22" conditionals="10" coveredmethods="3" coveredelements="34" coveredstatements="21" coveredconditionals="10"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\builder\utils\CurrentObjectsStackManager.java">
<class name="CurrentObjectsStackManager">
<metrics methods="8" elements="25" statements="13" conditionals="4" coveredmethods="8" coveredelements="25" coveredstatements="13" coveredconditionals="4"/>
</class>
<class name="CurrentObjectsStackManager.CurrentObject">
<metrics methods="3" elements="7" statements="4" conditionals="0" coveredmethods="3" coveredelements="7" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="2" loc="71" ncloc="52" methods="11" elements="32" statements="17" conditionals="4" coveredmethods="11" coveredelements="32" coveredstatements="17" coveredconditionals="4"/>
</file>
</package>
<package name="jgb.handlers.swing">
<metrics files="37" classes="38" loc="2535" ncloc="1411" methods="126" elements="955" statements="623" conditionals="206" coveredmethods="118" coveredelements="911" coveredstatements="594" coveredconditionals="199"/>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\PanelTagHandler.java">
<class name="PanelTagHandler">
<metrics methods="4" elements="52" statements="40" conditionals="8" coveredmethods="4" coveredelements="50" coveredstatements="38" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="118" ncloc="81" methods="4" elements="52" statements="40" conditionals="8" coveredmethods="4" coveredelements="50" coveredstatements="38" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\PropertyTagHandler.java">
<class name="PropertyTagHandler">
<metrics methods="3" elements="23" statements="18" conditionals="2" coveredmethods="3" coveredelements="23" coveredstatements="18" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="74" ncloc="34" methods="3" elements="23" statements="18" conditionals="2" coveredmethods="3" coveredelements="23" coveredstatements="18" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ControlTagHandler.java">
<class name="ControlTagHandler">
<metrics methods="4" elements="29" statements="19" conditionals="6" coveredmethods="4" coveredelements="27" coveredstatements="18" coveredconditionals="5"/>
</class>
<metrics classes="1" loc="77" ncloc="40" methods="4" elements="29" statements="19" conditionals="6" coveredmethods="4" coveredelements="27" coveredstatements="18" coveredconditionals="5"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ConstructorTagHandler.java">
<class name="ConstructorTagHandler">
<metrics methods="2" elements="14" statements="12" conditionals="0" coveredmethods="2" coveredelements="14" coveredstatements="12" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="58" ncloc="25" methods="2" elements="14" statements="12" conditionals="0" coveredmethods="2" coveredelements="14" coveredstatements="12" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ButtonTagHandler.java">
<class name="ButtonTagHandler">
<metrics methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="40" ncloc="29" methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ConstraintsTagHandler.java">
<class name="ConstraintsTagHandler">
<metrics methods="2" elements="14" statements="8" conditionals="4" coveredmethods="2" coveredelements="14" coveredstatements="8" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="59" ncloc="24" methods="2" elements="14" statements="8" conditionals="4" coveredmethods="2" coveredelements="14" coveredstatements="8" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\GlueTagHandler.java">
<class name="GlueTagHandler">
<metrics methods="3" elements="18" statements="11" conditionals="4" coveredmethods="3" coveredelements="18" coveredstatements="11" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="55" ncloc="31" methods="3" elements="18" statements="11" conditionals="4" coveredmethods="3" coveredelements="18" coveredstatements="11" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\AbstractControlTagHandler.java">
<class name="AbstractControlTagHandler">
<metrics methods="8" elements="39" statements="23" conditionals="8" coveredmethods="8" coveredelements="39" coveredstatements="23" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="167" ncloc="59" methods="8" elements="39" statements="23" conditionals="8" coveredmethods="8" coveredelements="39" coveredstatements="23" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\MenuBarTagHandler.java">
<class name="MenuBarTagHandler">
<metrics methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="38" ncloc="21" methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ConstantTagHandler.java">
<class name="ConstantTagHandler">
<metrics methods="5" elements="32" statements="23" conditionals="4" coveredmethods="5" coveredelements="32" coveredstatements="23" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="99" ncloc="49" methods="5" elements="32" statements="23" conditionals="4" coveredmethods="5" coveredelements="32" coveredstatements="23" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\GridbagTagHandler.java">
<class name="GridbagTagHandler">
<metrics methods="5" elements="84" statements="63" conditionals="16" coveredmethods="5" coveredelements="71" coveredstatements="51" coveredconditionals="15"/>
</class>
<metrics classes="1" loc="146" ncloc="122" methods="5" elements="84" statements="63" conditionals="16" coveredmethods="5" coveredelements="71" coveredstatements="51" coveredconditionals="15"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\BorderTagHandler.java">
<class name="BorderTagHandler">
<metrics methods="3" elements="7" statements="4" conditionals="0" coveredmethods="3" coveredelements="7" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="24" ncloc="17" methods="3" elements="7" statements="4" conditionals="0" coveredmethods="3" coveredelements="7" coveredstatements="4" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\MenuTagHandler.java">
<class name="MenuTagHandler">
<metrics methods="3" elements="16" statements="9" conditionals="4" coveredmethods="3" coveredelements="16" coveredstatements="9" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="34" ncloc="23" methods="3" elements="16" statements="9" conditionals="4" coveredmethods="3" coveredelements="16" coveredstatements="9" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ControlsTagHandler.java">
<class name="ControlsTagHandler">
<metrics methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="22" coveredstatements="14" coveredconditionals="6"/>
</class>
<metrics classes="1" loc="62" ncloc="31" methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="22" coveredstatements="14" coveredconditionals="6"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\WindowTagHandler.java">
<class name="WindowTagHandler">
<metrics methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="20" coveredstatements="14" coveredconditionals="4"/>
</class>
<metrics classes="1" loc="79" ncloc="31" methods="2" elements="22" statements="14" conditionals="6" coveredmethods="2" coveredelements="20" coveredstatements="14" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\SeparatorTagHandler.java">
<class name="SeparatorTagHandler">
<metrics methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="32" ncloc="21" methods="3" elements="13" statements="8" conditionals="2" coveredmethods="3" coveredelements="13" coveredstatements="8" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\CheckTagHandler.java">
<class name="CheckTagHandler">
<metrics methods="3" elements="29" statements="16" conditionals="10" coveredmethods="2" coveredelements="27" coveredstatements="15" coveredconditionals="10"/>
</class>
<metrics classes="1" loc="47" ncloc="33" methods="3" elements="29" statements="16" conditionals="10" coveredmethods="2" coveredelements="27" coveredstatements="15" coveredconditionals="10"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\AbstractTagHandler.java">
<class name="AbstractTagHandler">
<metrics methods="16" elements="72" statements="48" conditionals="8" coveredmethods="16" coveredelements="69" coveredstatements="45" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="212" ncloc="111" methods="16" elements="72" statements="48" conditionals="8" coveredmethods="16" coveredelements="69" coveredstatements="45" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\RefTagHandler.java">
<class name="RefTagHandler">
<metrics methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="44" ncloc="14" methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\TextfieldTagHandler.java">
<class name="TextfieldTagHandler">
<metrics methods="3" elements="43" statements="24" conditionals="16" coveredmethods="2" coveredelements="41" coveredstatements="23" coveredconditionals="16"/>
</class>
<metrics classes="1" loc="67" ncloc="47" methods="3" elements="43" statements="24" conditionals="16" coveredmethods="2" coveredelements="41" coveredstatements="23" coveredconditionals="16"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ItemTagHandler.java">
<class name="ItemTagHandler">
<metrics methods="3" elements="52" statements="29" conditionals="20" coveredmethods="2" coveredelements="49" coveredstatements="28" coveredconditionals="19"/>
</class>
<metrics classes="1" loc="91" ncloc="59" methods="3" elements="52" statements="29" conditionals="20" coveredmethods="2" coveredelements="49" coveredstatements="28" coveredconditionals="19"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\LayoutTagHandler.java">
<class name="LayoutTagHandler">
<metrics methods="3" elements="15" statements="12" conditionals="0" coveredmethods="3" coveredelements="15" coveredstatements="12" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="62" ncloc="28" methods="3" elements="15" statements="12" conditionals="0" coveredmethods="3" coveredelements="15" coveredstatements="12" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ObjectTagHandler.java">
<class name="ObjectTagHandler">
<metrics methods="3" elements="14" statements="11" conditionals="0" coveredmethods="3" coveredelements="13" coveredstatements="10" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="60" ncloc="26" methods="3" elements="14" statements="11" conditionals="0" coveredmethods="3" coveredelements="13" coveredstatements="10" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\RegisterTagHandler.java">
<class name="RegisterTagHandler">
<metrics methods="2" elements="29" statements="25" conditionals="2" coveredmethods="2" coveredelements="29" coveredstatements="25" coveredconditionals="2"/>
</class>
<class name="RegisterTagHandler.EventReflector">
<metrics methods="2" elements="11" statements="7" conditionals="2" coveredmethods="2" coveredelements="11" coveredstatements="7" coveredconditionals="2"/>
</class>
<metrics classes="2" loc="103" ncloc="90" methods="4" elements="40" statements="32" conditionals="4" coveredmethods="4" coveredelements="40" coveredstatements="32" coveredconditionals="4"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\NullTagHandler.java">
<class name="NullTagHandler">
<metrics methods="2" elements="7" statements="5" conditionals="0" coveredmethods="1" coveredelements="6" coveredstatements="5" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="43" ncloc="17" methods="2" elements="7" statements="5" conditionals="0" coveredmethods="1" coveredelements="6" coveredstatements="5" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ReturnTagHandler.java">
<class name="ReturnTagHandler">
<metrics methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="26" ncloc="16" methods="2" elements="6" statements="4" conditionals="0" coveredmethods="2" coveredelements="6" coveredstatements="4" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ComboTagHandler.java">
<class name="ComboTagHandler">
<metrics methods="3" elements="37" statements="22" conditionals="12" coveredmethods="2" coveredelements="34" coveredstatements="21" coveredconditionals="11"/>
</class>
<metrics classes="1" loc="60" ncloc="44" methods="3" elements="37" statements="22" conditionals="12" coveredmethods="2" coveredelements="34" coveredstatements="21" coveredconditionals="11"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\StrutTagHandler.java">
<class name="StrutTagHandler">
<metrics methods="3" elements="27" statements="18" conditionals="6" coveredmethods="3" coveredelements="27" coveredstatements="18" coveredconditionals="6"/>
</class>
<metrics classes="1" loc="57" ncloc="36" methods="3" elements="27" statements="18" conditionals="6" coveredmethods="3" coveredelements="27" coveredstatements="18" coveredconditionals="6"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ParameterTagHandler.java">
<class name="ParameterTagHandler">
<metrics methods="2" elements="12" statements="8" conditionals="2" coveredmethods="2" coveredelements="12" coveredstatements="8" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="57" ncloc="21" methods="2" elements="12" statements="8" conditionals="2" coveredmethods="2" coveredelements="12" coveredstatements="8" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\WindowsTagHandler.java">
<class name="WindowsTagHandler">
<metrics methods="2" elements="2" statements="0" conditionals="0" coveredmethods="2" coveredelements="2" coveredstatements="0" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="39" ncloc="9" methods="2" elements="2" statements="0" conditionals="0" coveredmethods="2" coveredelements="2" coveredstatements="0" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\TabTagHandler.java">
<class name="TabTagHandler">
<metrics methods="1" elements="12" statements="9" conditionals="2" coveredmethods="1" coveredelements="12" coveredstatements="9" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="30" ncloc="21" methods="1" elements="12" statements="9" conditionals="2" coveredmethods="1" coveredelements="12" coveredstatements="9" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\ValueTagHandler.java">
<class name="ValueTagHandler">
<metrics methods="2" elements="41" statements="21" conditionals="18" coveredmethods="2" coveredelements="39" coveredstatements="20" coveredconditionals="17"/>
</class>
<metrics classes="1" loc="118" ncloc="43" methods="2" elements="41" statements="21" conditionals="18" coveredmethods="2" coveredelements="39" coveredstatements="20" coveredconditionals="17"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\MethodCallTagHandler.java">
<class name="MethodCallTagHandler">
<metrics methods="7" elements="35" statements="26" conditionals="2" coveredmethods="7" coveredelements="33" coveredstatements="24" coveredconditionals="2"/>
</class>
<metrics classes="1" loc="95" ncloc="56" methods="7" elements="35" statements="26" conditionals="2" coveredmethods="7" coveredelements="33" coveredstatements="24" coveredconditionals="2"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\AbstractValueTagHandler.java">
<class name="AbstractValueTagHandler">
<metrics methods="1" elements="3" statements="2" conditionals="0" coveredmethods="1" coveredelements="3" coveredstatements="2" coveredconditionals="0"/>
</class>
<metrics classes="1" loc="34" ncloc="7" methods="1" elements="3" statements="2" conditionals="0" coveredmethods="1" coveredelements="3" coveredstatements="2" coveredconditionals="0"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\SheetTagHandler.java">
<class name="SheetTagHandler">
<metrics methods="3" elements="24" statements="13" conditionals="8" coveredmethods="3" coveredelements="24" coveredstatements="13" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="37" ncloc="29" methods="3" elements="24" statements="13" conditionals="8" coveredmethods="3" coveredelements="24" coveredstatements="13" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\LabelTagHandler.java">
<class name="LabelTagHandler">
<metrics methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</class>
<metrics classes="1" loc="39" ncloc="29" methods="3" elements="24" statements="13" conditionals="8" coveredmethods="2" coveredelements="22" coveredstatements="12" coveredconditionals="8"/>
</file>
<file name="E:\java\jgb\src\java\core\jgb\handlers\swing\RadioTagHandler.java">
<class name="RadioTagHandler">
<metrics methods="3" elements="32" statements="19" conditionals="10" coveredmethods="2" coveredelements="30" coveredstatements="18" coveredconditionals="10"/>
</class>
<metrics classes="1" loc="52" ncloc="37" methods="3" elements="32" statements="19" conditionals="10" coveredmethods="2" coveredelements="30" coveredstatements="18" coveredconditionals="10"/>
</file>
</package>
</project>
</coverage>
--- NEW FILE: clover-20030627102828.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<coverage clover="1.2" generated="1056724109611">
<project timestamp="1056724092997">
<metrics packages="5" files="52" classes="55" loc="4154" ncloc="2175" methods="213" elements="1452" statements="931" conditionals="308" coveredmethods="200" coveredelements="1321" coveredstatements="843" coveredconditionals="278"/>
<package name="jgb.builder">
<metrics files="6" classes="6" loc="764" ncloc="235" methods="20" elements="123" statements="77" conditionals="26" coveredmethods="17" coveredelements="90" coveredstatements="58" coveredconditionals="15"/>
<file name="E:\java\jgb\src\java\core\jgb\builder\JgbEntityResolver.java">
<class name="JgbEntityResolver">
<metrics methods="3" elements="19" statements...
[truncated message content] |
|
From: <fb...@us...> - 2003-06-27 20:51:05
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb/builder
In directory sc8-pr-cvs1:/tmp/cvs-serv22120/src/java/core/jgb/builder
Modified Files:
Builder.java DefaultBuilder.java
Log Message:
* src/java/core/jgb/InvalidParameterException.java,
src/java/core/jgb/RequiredArgumentMissingException.java,
src/java/core/jgb/TooManyArgumentsException.java,
src/java/core/jgb/UnknownArgumentException.java:
Created new Exception classes to handler Exception while
BuildWindowFromXmlFile starts up.
* src/java/tests/jgb/TestBuildWindowFromXmlFile.java:
Created tests to start having some coverage.
* src/java/core/jgb/BuildWindowFromXmlFile.java:
Implemented tests.
* src/java/core/jgb/builder/Builder.java:
Added a new build(InputSource) method to allow using an InputSource
instead of having an InputStream.
* src/java/core/jgb/builder/DefaultBuilder.java:
Implemented interface specifications.
Index: Builder.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/Builder.java,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** Builder.java 27 Jun 2003 16:45:48 -0000 1.26
--- Builder.java 27 Jun 2003 20:49:50 -0000 1.27
***************
*** 23,26 ****
--- 23,27 ----
import org.xml.sax.EntityResolver;
import org.xml.sax.SAXException;
+ import org.xml.sax.InputSource;
import javax.swing.*;
***************
*** 61,65 ****
/**
! * Initiates building of the objects by reading the specified {@link java.io.InputStream InputStream}.
* This stream will be parsed as an XML file. The parser used to parse
* the file will be validating.
--- 62,67 ----
/**
! * Initiates building of the objects by reading the specified
! * {@link java.io.InputStream InputStream}.
* This stream will be parsed as an XML file. The parser used to parse
* the file will be validating.
***************
*** 67,72 ****
--- 69,88 ----
* error occurs.
* @throws IOException If an I/O error occurs while reading the stream.
+ * @throws IllegalArgumentException If the input stream is
+ * <code>null</code>.
*/
JWindow build(InputStream in) throws IOException, SAXException;
+
+ /**
+ * Initiates building of the objects by reading the specified
+ * {@link org.xml.sax.InputSource InputSource}.
+ * The parser used to parse the source will be validating.
+ * @throws SAXException If a parser could not be instantiated, or a build
+ * error occurs.
+ * @throws IOException If an I/O error occurs while reading the stream.
+ * @throws IllegalArgumentException If the input source is
+ * <code>null</code>.
+ */
+ JWindow build(InputSource in) throws IOException, SAXException;
/**
Index: DefaultBuilder.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/DefaultBuilder.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** DefaultBuilder.java 27 Jun 2003 16:45:48 -0000 1.3
--- DefaultBuilder.java 27 Jun 2003 20:49:50 -0000 1.4
***************
*** 77,80 ****
--- 77,88 ----
public JWindow build(InputStream in) throws IOException, SAXException {
+ if (null == in) {
+ throw new IllegalArgumentException("in must not be null");
+ }
+
+ return build(new InputSource(in));
+ }
+
+ public JWindow build(InputSource in) throws IOException, SAXException {
SAXParserFactory factory = SAXParserFactory.newInstance();
factory.setValidating(true);
***************
*** 89,93 ****
tagContext.put(TagHandler.OBJECTS_MAP_KEY, new HashMap());
parser.parse(in, this);
! return (JWindow)tagContext.get(TagHandler.CURRENT_WINDOW_KEY);
}
--- 97,101 ----
tagContext.put(TagHandler.OBJECTS_MAP_KEY, new HashMap());
parser.parse(in, this);
! return (JWindow) tagContext.get(TagHandler.CURRENT_WINDOW_KEY);
}
***************
*** 97,101 ****
public Object getObject(String name) {
! return (((Map)tagContext.get(TagHandler.OBJECTS_MAP_KEY)).get(name));
}
--- 105,109 ----
public Object getObject(String name) {
! return (((Map) tagContext.get(TagHandler.OBJECTS_MAP_KEY)).get(name));
}
***************
*** 207,211 ****
*/
private TagHandler getHandlerFor(String qName) throws SAXException {
! Stack handlersFactory = (Stack)tagContext.get(TagHandler.TAG_HANDLER_FACTORY_STACK_KEY);
if (handlersFactory.isEmpty()) {
try {
--- 215,219 ----
*/
private TagHandler getHandlerFor(String qName) throws SAXException {
! Stack handlersFactory = (Stack) tagContext.get(TagHandler.TAG_HANDLER_FACTORY_STACK_KEY);
if (handlersFactory.isEmpty()) {
try {
***************
*** 216,220 ****
}
! TagHandlerFactory factory = (TagHandlerFactory)handlersFactory.peek();
try {
return factory.getHandlerFor(qName);
--- 224,228 ----
}
! TagHandlerFactory factory = (TagHandlerFactory) handlersFactory.peek();
try {
return factory.getHandlerFor(qName);
***************
*** 240,244 ****
try {
for (Iterator iterator = resolvers.iterator(); iterator.hasNext();) {
! EntityResolver resolver = (EntityResolver)iterator.next();
InputSource entity = resolver.resolveEntity(publicId, systemId);
if (null != entity) {
--- 248,252 ----
try {
for (Iterator iterator = resolvers.iterator(); iterator.hasNext();) {
! EntityResolver resolver = (EntityResolver) iterator.next();
InputSource entity = resolver.resolveEntity(publicId, systemId);
if (null != entity) {
|
|
From: <fb...@us...> - 2003-06-27 20:51:05
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb
In directory sc8-pr-cvs1:/tmp/cvs-serv22120/src/java/tests/jgb
Modified Files:
TestBuildWindowFromXmlFile.java
Log Message:
* src/java/core/jgb/InvalidParameterException.java,
src/java/core/jgb/RequiredArgumentMissingException.java,
src/java/core/jgb/TooManyArgumentsException.java,
src/java/core/jgb/UnknownArgumentException.java:
Created new Exception classes to handler Exception while
BuildWindowFromXmlFile starts up.
* src/java/tests/jgb/TestBuildWindowFromXmlFile.java:
Created tests to start having some coverage.
* src/java/core/jgb/BuildWindowFromXmlFile.java:
Implemented tests.
* src/java/core/jgb/builder/Builder.java:
Added a new build(InputSource) method to allow using an InputSource
instead of having an InputStream.
* src/java/core/jgb/builder/DefaultBuilder.java:
Implemented interface specifications.
Index: TestBuildWindowFromXmlFile.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/TestBuildWindowFromXmlFile.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TestBuildWindowFromXmlFile.java 27 Jun 2003 16:45:49 -0000 1.2
--- TestBuildWindowFromXmlFile.java 27 Jun 2003 20:49:50 -0000 1.3
***************
*** 20,30 ****
--- 20,40 ----
package jgb;
+ import com.mockobjects.dynamic.C;
import com.mockobjects.dynamic.Mock;
import jgb.builder.Builder;
import junit.framework.TestCase;
+ import javax.swing.*;
+ import java.util.ArrayList;
+ import java.util.Arrays;
+ import java.util.Collections;
+ import java.io.*;
+
+ import org.xml.sax.*;
+
public class TestBuildWindowFromXmlFile extends TestCase {
private final BuildWindowFromXmlFile windowBuilder = new BuildWindowFromXmlFile();
private final Mock mockBuilder = new Mock(Builder.class);
+ private String[] args;
protected void setUp() throws Exception {
***************
*** 32,37 ****
}
! public void testNotImplemented() {
! fail("Need to implement some tests here, real soon...");
}
}
--- 42,250 ----
}
! public void testUnderstandsVerboseOption() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "--verbose",
! "src/examples/simplewindow.xml",
! };
!
! mockBuilder.expect("setVerbose", C.eq(new Boolean(true)));
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! new ArrayList(Arrays.asList(args)));
!
! mockBuilder.verify();
! }
!
! public void testUnderstandsVerboseShortOption() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "-v",
! "src/examples/simplewindow.xml",
! };
!
! mockBuilder.expect("setVerbose", C.eq(new Boolean(true)));
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! new ArrayList(Arrays.asList(args)));
!
! mockBuilder.verify();
! }
!
! public void testUnderstandsQuietOption() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "--quiet",
! "src/examples/simplewindow.xml",
! };
!
! mockBuilder.expect("setQuiet", C.eq(new Boolean(true)));
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! new ArrayList(Arrays.asList(args)));
!
! mockBuilder.verify();
! }
!
! public void testUnderstandsQuietShortOption() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "-q",
! "src/examples/simplewindow.xml",
! };
!
! mockBuilder.expect("setQuiet", C.eq(new Boolean(true)));
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! new ArrayList(Arrays.asList(args)));
!
! mockBuilder.verify();
! }
!
! public void testComplainsAboutMissingArgumentWhenNoFilename() throws InvalidParameterException, FileNotFoundException {
! try {
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! Collections.EMPTY_LIST);
! fail("Failed to complain about missing argument");
! } catch (RequiredArgumentMissingException success) {
! assertTrue(true);
! }
! }
!
! public void testComplainsAboutUnknownOption() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "--unknown-option",
! };
!
! try {
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! Arrays.asList(args));
! fail("Failed to complain about unknown argument");
! } catch (UnknownArgumentException success) {
! assertTrue(true);
! }
! }
!
! public void testComplainsIfFileNotFound() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "some/non/possible/file/name/argument/that/should/not/really/exist.xml",
! };
!
! try {
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! Arrays.asList(args));
! fail("Failed to complain that file does not exist");
! } catch (FileNotFoundException success) {
! assertTrue(true);
! }
! }
!
! public void testComplainsIfTooManyArguments() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "src/examples/simplewindow.xml",
! "src/examples/simplewindow2.xml",
! };
!
! try {
! windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! Arrays.asList(args));
! fail("Failed to complain that there are too many arguments");
! } catch (TooManyArgumentsException success) {
! assertTrue(true);
! }
! }
!
! public void testReturnsFilenameArgument() throws InvalidParameterException, FileNotFoundException {
! args = new String[]{
! "src/examples/simplewindow.xml",
! };
!
! final String absolutePath = windowBuilder.processArguments(
! (Builder) mockBuilder.proxy(),
! Arrays.asList(args));
!
! assertEquals("Returned the absolute path to the file",
! new File(args[0]).getAbsolutePath(), absolutePath);
! }
!
! public void testTransfersControlToBuilder() throws IOException, SAXException {
! final JFrame window = new JFrame();
! final InputSource source = new InputSource();
! mockBuilder.expectAndReturn("build", C.same(source), window);
! final JWindow builtWindow = windowBuilder.start(
! new Builder() {
! public void setQuiet(boolean quiet) {
! }
!
! public void setVerbose(boolean verbose) {
! }
!
! public JWindow build(InputStream in) throws IOException, SAXException {
! return null;
! }
!
! public JWindow build(InputSource in) throws IOException, SAXException {
! assertSame(source,in);
! return window;
! }
!
! public void setLoggingStream(PrintWriter logStream) {
! }
!
! public void addResolver(EntityResolver resolver) {
! }
!
! public void setDocumentLocator(Locator locator) {
! }
!
! public void startDocument()
! throws SAXException {
! }
!
! public void endDocument()
! throws SAXException {
! }
!
! public void startPrefixMapping(String prefix, String uri)
! throws SAXException {
! }
!
! public void endPrefixMapping(String prefix)
! throws SAXException {
! }
!
! public void startElement(String namespaceURI, String localName,
! String qName, Attributes atts)
! throws SAXException {
! }
!
! public void endElement(String namespaceURI, String localName,
! String qName)
! throws SAXException {
! }
!
! public void characters(char ch[], int start, int length)
! throws SAXException {
! }
!
! public void ignorableWhitespace(char ch[], int start, int length)
! throws SAXException {
! }
!
! public void processingInstruction(String target, String data)
! throws SAXException {
! }
!
! public void skippedEntity(String name)
! throws SAXException {
! }
!
! public Object getObject(String name) {
! return null;
! }
! } , source);
! mockBuilder.verify();
! assertSame("Returns the window that was returned from the builder",
! window, builtWindow);
}
}
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb
In directory sc8-pr-cvs1:/tmp/cvs-serv22120/src/java/core/jgb
Modified Files:
BuildWindowFromXmlFile.java
Added Files:
InvalidParameterException.java
RequiredArgumentMissingException.java
TooManyArgumentsException.java UnknownArgumentException.java
Log Message:
* src/java/core/jgb/InvalidParameterException.java,
src/java/core/jgb/RequiredArgumentMissingException.java,
src/java/core/jgb/TooManyArgumentsException.java,
src/java/core/jgb/UnknownArgumentException.java:
Created new Exception classes to handler Exception while
BuildWindowFromXmlFile starts up.
* src/java/tests/jgb/TestBuildWindowFromXmlFile.java:
Created tests to start having some coverage.
* src/java/core/jgb/BuildWindowFromXmlFile.java:
Implemented tests.
* src/java/core/jgb/builder/Builder.java:
Added a new build(InputSource) method to allow using an InputSource
instead of having an InputStream.
* src/java/core/jgb/builder/DefaultBuilder.java:
Implemented interface specifications.
--- NEW FILE: InvalidParameterException.java ---
package jgb;
public abstract class InvalidParameterException extends Exception {
public InvalidParameterException() {
}
public InvalidParameterException(String message) {
super(message);
}
public final String getMessage() {
final StringBuffer out = new StringBuffer();
out.append(getParamMessage());
if (null != super.getMessage()) {
out.append(super.getMessage());
}
return out.toString();
}
protected abstract StringBuffer getParamMessage();
}
--- NEW FILE: RequiredArgumentMissingException.java ---
package jgb;
public class RequiredArgumentMissingException extends InvalidParameterException {
private final String argName;
public RequiredArgumentMissingException(String argName) {
this.argName = argName;
}
public RequiredArgumentMissingException(String message, String argName) {
super(message);
this.argName = argName;
}
public String getArgName() {
return argName;
}
protected StringBuffer getParamMessage() {
final StringBuffer out = new StringBuffer();
out.append("Missing required <").
append(argName).append("> argument.");
return out;
}
}
--- NEW FILE: TooManyArgumentsException.java ---
package jgb;
public class TooManyArgumentsException extends InvalidParameterException {
public TooManyArgumentsException() {
}
public TooManyArgumentsException(String message) {
super(message);
}
protected StringBuffer getParamMessage() {
return new StringBuffer("Too many arguments");
}
}
--- NEW FILE: UnknownArgumentException.java ---
package jgb;
public class UnknownArgumentException extends InvalidParameterException {
private final String unknownArg;
public UnknownArgumentException(String unknownArg) {
this.unknownArg = unknownArg;
}
public UnknownArgumentException(String message, String unknownArg) {
super(message);
this.unknownArg = unknownArg;
}
public String getUnknownArg() {
return unknownArg;
}
protected StringBuffer getParamMessage() {
final StringBuffer out = new StringBuffer();
out.append("Unknown '").append(unknownArg).append("' argument.");
return out;
}
}
Index: BuildWindowFromXmlFile.java
===================================================================
RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/BuildWindowFromXmlFile.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** BuildWindowFromXmlFile.java 27 Jun 2003 16:45:48 -0000 1.13
--- BuildWindowFromXmlFile.java 27 Jun 2003 20:49:50 -0000 1.14
***************
*** 20,33 ****
package jgb;
import jgb.builder.DefaultBuilder;
import jgb.builder.JgbEntityResolver;
! import jgb.builder.Builder;
! import java.io.FileInputStream;
import java.util.Arrays;
! import java.util.HashSet;
! import java.util.Set;
- import javax.swing.JWindow;
/**
* Builds a window from an XML file.
--- 20,36 ----
package jgb;
+ import jgb.builder.Builder;
import jgb.builder.DefaultBuilder;
import jgb.builder.JgbEntityResolver;
! import org.xml.sax.InputSource;
! import org.xml.sax.SAXException;
! import javax.swing.*;
! import java.io.*;
import java.util.Arrays;
! import java.util.Iterator;
! import java.util.LinkedList;
! import java.util.List;
/**
* Builds a window from an XML file.
***************
*** 61,64 ****
--- 64,68 ----
*/
public class BuildWindowFromXmlFile {
+ ///CLOVER:OFF
/**
* Builds a window from the file passed as the first argument.
***************
*** 67,99 ****
*/
public static void main(String[] args) throws Exception {
final Builder builder = new DefaultBuilder();
builder.addResolver(new JgbEntityResolver());
! final Set arguments = new HashSet(Arrays.asList(args));
! if (arguments.contains("--verbose") || arguments.contains("-v")) {
! builder.setVerbose(true);
! arguments.remove("--verbose");
! arguments.remove("-v");
! }
!
! boolean show = false;
! if (arguments.contains("--show")) {
! show = true;
! arguments.remove("--show");
! }
! if (arguments.size() == 0) {
! printUsage("Missing argument - <xml file>");
! System.exit(1);
! } else if (arguments.size() > 1) {
! System.err.println("Too many arguments: " + arguments);
! System.exit(1);
! }
! JWindow window = builder.build(new FileInputStream((String)(arguments.iterator().next())));
! if (show) {
! window.pack();
! window.setVisible(true);
! }
}
--- 71,86 ----
*/
public static void main(String[] args) throws Exception {
+ final BuildWindowFromXmlFile processor = new BuildWindowFromXmlFile();
final Builder builder = new DefaultBuilder();
builder.addResolver(new JgbEntityResolver());
! final String path = processor.processArguments(builder, Arrays.asList(args));
! InputSource in = new InputSource();
! in.setByteStream(new BufferedInputStream(new FileInputStream(path)));
! in.setCharacterStream(new BufferedReader(new FileReader(path)));
! in.setSystemId(new File(path).toURL().toString());
! JWindow window = builder.build(in);
}
***************
*** 102,106 ****
System.err.println(error);
System.err.println("Usage:");
! System.err.println(" java jgb.examples.BuildWindowFromXmlFile [--verbose|-v] [--show] <xml file>");
System.err.println("where");
System.err.println(" --show is asking for the packing and setting ");
--- 89,93 ----
System.err.println(error);
System.err.println("Usage:");
! System.err.println(" java jgb.BuildWindowFromXmlFile [--verbose|-v] [--show] <xml file>");
System.err.println("where");
System.err.println(" --show is asking for the packing and setting ");
***************
*** 108,111 ****
--- 95,155 ----
System.err.println(" --verbose or -v is asking for the Builder to be verbose");
System.err.println(" and <xml file> is the path to an XML file which should be processed");
+ }
+ ///CLOVER:ON
+
+ /**
+ * Reads and processes each argument on the command line.
+ * @param builder The builder which will have its options set according
+ * to the options set on the command line.
+ * @param args The list of arguments as received from the command-line.
+ * The list will in no way be modified by this method.
+ * @throws RequiredArgumentMissingException if the filename argument is missing
+ * from the command line.
+ * @throws UnknownArgumentException if an argument cannot be processed
+ * because it is not a filename.
+ * @throws FileNotFoundException if the filename argument cannot be found
+ * on disk.
+ * @throws TooManyArgumentsException if there are more than one filename
+ * arguments on the command line.
+ * @return The absolute path to the last argument (filename).
+ */
+ public String processArguments(final Builder builder, final List args) throws InvalidParameterException, FileNotFoundException {
+ final List copiedArgs = new LinkedList(args);
+ for (Iterator iterator = copiedArgs.iterator(); iterator.hasNext();) {
+ final String arg = (String) iterator.next();
+
+ if (arg.equals("--verbose")
+ || arg.equals("-v")) {
+ builder.setVerbose(true);
+ } else if (arg.equals("--quiet")
+ || arg.equals("-q")) {
+ builder.setQuiet(true);
+ } else if (arg.startsWith("-")) {
+ throw new UnknownArgumentException(arg);
+ } else {
+ continue;
+ }
+
+ // Remove the now processed argument from the list
+ iterator.remove();
+ }
+
+ if (copiedArgs.size() == 0) {
+ throw new RequiredArgumentMissingException("filename");
+ } else if (copiedArgs.size() > 1) {
+ throw new TooManyArgumentsException();
+ }
+
+ File file = new File((String) copiedArgs.get(0));
+ if (false == file.exists()) {
+ throw new FileNotFoundException(
+ "File not found: '" + file.getName() + '\'');
+ }
+
+ return file.getAbsolutePath();
+ }
+
+ public JWindow start(Builder b, InputSource in) throws IOException, SAXException {
+ return b.build(in);
}
}
|
|
From: <fb...@us...> - 2003-06-27 17:40:22
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/factories In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/tests/jgb/factories Modified Files: AbstractTestTagHandlerFactory.java AllTests.java Log Message: * all files: Switched to LGPL. Index: AbstractTestTagHandlerFactory.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/factories/AbstractTestTagHandlerFactory.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AbstractTestTagHandlerFactory.java 10 Jun 2003 01:56:14 -0000 1.4 --- AbstractTestTagHandlerFactory.java 27 Jun 2003 16:45:49 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.factories; Index: AllTests.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/factories/AllTests.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AllTests.java 10 Jun 2003 01:56:14 -0000 1.2 --- AllTests.java 27 Jun 2003 16:45:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.factories; |
|
From: <fb...@us...> - 2003-06-27 17:38:58
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/factories/swing In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/tests/jgb/factories/swing Modified Files: AllTests.java TestPackageTagHandlerFactory.java Log Message: * all files: Switched to LGPL. Index: AllTests.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/factories/swing/AllTests.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AllTests.java 10 Jun 2003 01:56:16 -0000 1.2 --- AllTests.java 27 Jun 2003 16:45:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.factories.swing; Index: TestPackageTagHandlerFactory.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/factories/swing/TestPackageTagHandlerFactory.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestPackageTagHandlerFactory.java 14 Jun 2003 01:38:44 -0000 1.3 --- TestPackageTagHandlerFactory.java 27 Jun 2003 16:45:49 -0000 1.4 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.factories.swing; |
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/testutils In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/tests/jgb/testutils Modified Files: AllTests.java MultiParamClass.java TwoParamClass.java ValueParameterClass.java XmlSourceInputStream.java Log Message: * all files: Switched to LGPL. Index: AllTests.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/testutils/AllTests.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AllTests.java 10 Jun 2003 01:56:20 -0000 1.3 --- AllTests.java 27 Jun 2003 16:45:50 -0000 1.4 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.testutils; Index: MultiParamClass.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/testutils/MultiParamClass.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** MultiParamClass.java 4 Apr 2002 14:00:00 -0000 1.1.1.1 --- MultiParamClass.java 27 Jun 2003 16:45:50 -0000 1.2 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TwoParamClass.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/testutils/TwoParamClass.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** TwoParamClass.java 4 Apr 2002 14:00:00 -0000 1.1.1.1 --- TwoParamClass.java 27 Jun 2003 16:45:50 -0000 1.2 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ValueParameterClass.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/testutils/ValueParameterClass.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ValueParameterClass.java 26 Sep 2002 01:46:08 -0000 1.2 --- ValueParameterClass.java 27 Jun 2003 16:45:50 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.testutils; Index: XmlSourceInputStream.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/testutils/XmlSourceInputStream.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** XmlSourceInputStream.java 21 Jun 2003 05:36:11 -0000 1.7 --- XmlSourceInputStream.java 27 Jun 2003 16:45:50 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.testutils; |
|
From: <fb...@us...> - 2003-06-27 17:38:58
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/handlers In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/tests/jgb/handlers Modified Files: AllTests.java TagHandlerAbstractTest.java Log Message: * all files: Switched to LGPL. Index: AllTests.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/AllTests.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AllTests.java 17 Oct 2002 02:02:35 -0000 1.1 --- AllTests.java 27 Jun 2003 16:45:50 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers; Index: TagHandlerAbstractTest.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/TagHandlerAbstractTest.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TagHandlerAbstractTest.java 10 Jun 2003 01:01:43 -0000 1.6 --- TagHandlerAbstractTest.java 27 Jun 2003 16:45:50 -0000 1.7 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ |
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/tests/jgb/handlers/swing Modified Files: AllTests.java TestAbstractControlTagHandler.java TestAbstractTagHandler.java TestBorderTagHandler.java TestButtonTagHandler.java TestCheckTagHandler.java TestComboTagHandler.java TestConstantTagHandler.java TestConstraintsTagHandler.java TestConstructorTagHandler.java TestControlTagHandler.java TestControlsTagHandler.java TestGlueTagHandler.java TestGridbagTagHandler.java TestItemTagHandler.java TestLabelTagHandler.java TestLayoutTagHandler.java TestMenuBarTagHandler.java TestMenuTagHandler.java TestMethodCallTagHandler.java TestNullTagHandler.java TestObjectTagHandler.java TestPanelTagHandler.java TestParameterTagHandler.java TestPropertyTagHandler.java TestRadioTagHandler.java TestRefTagHandler.java TestRegisterTagHandler.java TestReturnTagHandler.java TestSeparatorTagHandler.java TestSheetTagHandler.java TestStrutTagHandler.java TestTabTagHandler.java TestTextfieldTagHandler.java TestValueTagHandler.java TestWindowTagHandler.java TestWindowsTagHandler.java Log Message: * all files: Switched to LGPL. Index: AllTests.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/AllTests.java,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** AllTests.java 25 Jun 2003 20:40:25 -0000 1.34 --- AllTests.java 27 Jun 2003 16:45:50 -0000 1.35 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestAbstractControlTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestAbstractControlTagHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestAbstractControlTagHandler.java 14 Jun 2003 01:59:55 -0000 1.2 --- TestAbstractControlTagHandler.java 27 Jun 2003 16:45:50 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestAbstractTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestAbstractTagHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestAbstractTagHandler.java 17 Oct 2002 01:53:35 -0000 1.1 --- TestAbstractTagHandler.java 27 Jun 2003 16:45:50 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestBorderTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestBorderTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestBorderTagHandler.java 12 Jun 2003 16:55:34 -0000 1.7 --- TestBorderTagHandler.java 27 Jun 2003 16:45:50 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestButtonTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestButtonTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestButtonTagHandler.java 17 Oct 2002 02:02:35 -0000 1.5 --- TestButtonTagHandler.java 27 Jun 2003 16:45:50 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestCheckTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestCheckTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestCheckTagHandler.java 17 Oct 2002 02:02:35 -0000 1.4 --- TestCheckTagHandler.java 27 Jun 2003 16:45:50 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestComboTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestComboTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestComboTagHandler.java 17 Oct 2002 02:02:35 -0000 1.4 --- TestComboTagHandler.java 27 Jun 2003 16:45:50 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestConstantTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestConstantTagHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TestConstantTagHandler.java 25 Jun 2003 02:09:15 -0000 1.10 --- TestConstantTagHandler.java 27 Jun 2003 16:45:50 -0000 1.11 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestConstraintsTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestConstraintsTagHandler.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestConstraintsTagHandler.java 17 Oct 2002 02:02:35 -0000 1.6 --- TestConstraintsTagHandler.java 27 Jun 2003 16:45:50 -0000 1.7 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestConstructorTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestConstructorTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestConstructorTagHandler.java 6 Jun 2003 04:09:10 -0000 1.7 --- TestConstructorTagHandler.java 27 Jun 2003 16:45:50 -0000 1.8 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestControlTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestControlTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TestControlTagHandler.java 17 Oct 2002 02:02:35 -0000 1.11 --- TestControlTagHandler.java 27 Jun 2003 16:45:50 -0000 1.12 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestControlsTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestControlsTagHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TestControlsTagHandler.java 24 Jun 2003 05:42:10 -0000 1.10 --- TestControlsTagHandler.java 27 Jun 2003 16:45:50 -0000 1.11 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestGlueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestGlueTagHandler.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestGlueTagHandler.java 12 Jun 2003 17:51:47 -0000 1.6 --- TestGlueTagHandler.java 27 Jun 2003 16:45:50 -0000 1.7 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestGridbagTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestGridbagTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestGridbagTagHandler.java 12 Jun 2003 17:30:01 -0000 1.9 --- TestGridbagTagHandler.java 27 Jun 2003 16:45:50 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestItemTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestItemTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestItemTagHandler.java 17 Oct 2002 02:02:35 -0000 1.7 --- TestItemTagHandler.java 27 Jun 2003 16:45:50 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestLabelTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestLabelTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestLabelTagHandler.java 10 Jun 2003 01:22:03 -0000 1.9 --- TestLabelTagHandler.java 27 Jun 2003 16:45:50 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestLayoutTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestLayoutTagHandler.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** TestLayoutTagHandler.java 24 Jun 2003 04:45:45 -0000 1.13 --- TestLayoutTagHandler.java 27 Jun 2003 16:45:50 -0000 1.14 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestMenuBarTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestMenuBarTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestMenuBarTagHandler.java 14 Jun 2003 02:05:41 -0000 1.7 --- TestMenuBarTagHandler.java 27 Jun 2003 16:45:50 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestMenuTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestMenuTagHandler.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestMenuTagHandler.java 24 Jun 2003 05:19:34 -0000 1.6 --- TestMenuTagHandler.java 27 Jun 2003 16:45:50 -0000 1.7 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestMethodCallTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestMethodCallTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestMethodCallTagHandler.java 17 Oct 2002 02:02:35 -0000 1.9 --- TestMethodCallTagHandler.java 27 Jun 2003 16:45:50 -0000 1.10 *************** *** 1,21 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ package jgb.handlers.swing; --- 1,21 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + package jgb.handlers.swing; Index: TestNullTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestNullTagHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestNullTagHandler.java 27 Jun 2003 14:45:09 -0000 1.2 --- TestNullTagHandler.java 27 Jun 2003 16:45:50 -0000 1.3 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestObjectTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestObjectTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TestObjectTagHandler.java 17 Oct 2002 02:02:35 -0000 1.11 --- TestObjectTagHandler.java 27 Jun 2003 16:45:50 -0000 1.12 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestPanelTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestPanelTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestPanelTagHandler.java 14 Jun 2003 02:52:27 -0000 1.7 --- TestPanelTagHandler.java 27 Jun 2003 16:45:50 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestParameterTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestParameterTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestParameterTagHandler.java 17 Oct 2002 02:02:35 -0000 1.9 --- TestParameterTagHandler.java 27 Jun 2003 16:45:50 -0000 1.10 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestPropertyTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestPropertyTagHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** TestPropertyTagHandler.java 17 Oct 2002 02:02:36 -0000 1.10 --- TestPropertyTagHandler.java 27 Jun 2003 16:45:50 -0000 1.11 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestRadioTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestRadioTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestRadioTagHandler.java 10 Jun 2003 02:24:22 -0000 1.7 --- TestRadioTagHandler.java 27 Jun 2003 16:45:50 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestRefTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestRefTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestRefTagHandler.java 17 Oct 2002 02:02:36 -0000 1.9 --- TestRefTagHandler.java 27 Jun 2003 16:45:50 -0000 1.10 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestRegisterTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestRegisterTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestRegisterTagHandler.java 24 Jun 2003 06:26:32 -0000 1.5 --- TestRegisterTagHandler.java 27 Jun 2003 16:45:50 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestReturnTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestReturnTagHandler.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestReturnTagHandler.java 14 Jun 2003 01:41:22 -0000 1.6 --- TestReturnTagHandler.java 27 Jun 2003 16:45:50 -0000 1.7 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestSeparatorTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestSeparatorTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestSeparatorTagHandler.java 12 Jun 2003 17:10:40 -0000 1.4 --- TestSeparatorTagHandler.java 27 Jun 2003 16:45:50 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestSheetTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestSheetTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TestSheetTagHandler.java 21 Jun 2003 05:38:04 -0000 1.4 --- TestSheetTagHandler.java 27 Jun 2003 16:45:50 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestStrutTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestStrutTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TestStrutTagHandler.java 12 Jun 2003 18:07:07 -0000 1.5 --- TestStrutTagHandler.java 27 Jun 2003 16:45:50 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestTabTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestTabTagHandler.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestTabTagHandler.java 21 Jun 2003 05:38:04 -0000 1.3 --- TestTabTagHandler.java 27 Jun 2003 16:45:50 -0000 1.4 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestTextfieldTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestTextfieldTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestTextfieldTagHandler.java 10 Jun 2003 01:22:03 -0000 1.9 --- TestTextfieldTagHandler.java 27 Jun 2003 16:45:50 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TestValueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/handlers/swing/TestValueTagHandler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** TestValueTagHandler.java 17 Oct 2002 02:02:36 -0000 1.8 --- TestValueTagHandler.java 27 Jun 2003 16:45:50 -0000 1.9 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestWindowTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/te... [truncated message content] |
|
From: <fb...@us...> - 2003-06-27 17:16:30
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/core/jgb/builder/utils Modified Files: AttributesMapAdapter.java ConstructorCall.java CurrentObjectsStackManager.java KeyStrokeParser.java MethodCall.java MethodCallException.java ParametersAccumulator.java Log Message: * all files: Switched to LGPL. Index: AttributesMapAdapter.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils/AttributesMapAdapter.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AttributesMapAdapter.java 24 Jun 2003 21:14:18 -0000 1.5 --- AttributesMapAdapter.java 27 Jun 2003 16:45:48 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: ConstructorCall.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils/ConstructorCall.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ConstructorCall.java 17 Oct 2002 02:02:32 -0000 1.8 --- ConstructorCall.java 27 Jun 2003 16:45:48 -0000 1.9 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: CurrentObjectsStackManager.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils/CurrentObjectsStackManager.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** CurrentObjectsStackManager.java 3 May 2002 19:39:42 -0000 1.4 --- CurrentObjectsStackManager.java 27 Jun 2003 16:45:48 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: KeyStrokeParser.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils/KeyStrokeParser.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** KeyStrokeParser.java 1 Oct 2002 02:27:48 -0000 1.2 --- KeyStrokeParser.java 27 Jun 2003 16:45:48 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: MethodCall.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils/MethodCall.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MethodCall.java 17 Oct 2002 02:02:32 -0000 1.9 --- MethodCall.java 27 Jun 2003 16:45:48 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: MethodCallException.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils/MethodCallException.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MethodCallException.java 17 Oct 2002 02:02:32 -0000 1.4 --- MethodCallException.java 27 Jun 2003 16:45:48 -0000 1.5 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ParametersAccumulator.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/utils/ParametersAccumulator.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ParametersAccumulator.java 17 Oct 2002 02:02:32 -0000 1.6 --- ParametersAccumulator.java 27 Jun 2003 16:45:48 -0000 1.7 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; |
|
From: <fb...@us...> - 2003-06-27 17:16:30
|
Update of /cvsroot/jgb/jgb/src/java/core/jgb In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/core/jgb Modified Files: BuildWindowFromXmlFile.java ValidateFile.java Log Message: * all files: Switched to LGPL. Index: BuildWindowFromXmlFile.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/BuildWindowFromXmlFile.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** BuildWindowFromXmlFile.java 25 Jun 2003 02:13:08 -0000 1.12 --- BuildWindowFromXmlFile.java 27 Jun 2003 16:45:48 -0000 1.13 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ValidateFile.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/ValidateFile.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ValidateFile.java 25 Jun 2003 04:09:30 -0000 1.10 --- ValidateFile.java 27 Jun 2003 16:45:48 -0000 1.11 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ |
Update of /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/core/jgb/handlers/swing Modified Files: AbstractControlTagHandler.java AbstractTagHandler.java AbstractValueTagHandler.java BorderTagHandler.java ButtonTagHandler.java CheckTagHandler.java ComboTagHandler.java ConstantTagHandler.java ConstraintsTagHandler.java ConstructorTagHandler.java ControlTagHandler.java ControlsTagHandler.java GlueTagHandler.java GridbagTagHandler.java ItemTagHandler.java LabelTagHandler.java LayoutTagHandler.java MenuBarTagHandler.java MenuTagHandler.java MethodCallTagHandler.java NullTagHandler.java ObjectTagHandler.java PanelTagHandler.java ParameterTagHandler.java PropertyTagHandler.java RadioTagHandler.java RefTagHandler.java RegisterTagHandler.java ReturnTagHandler.java SeparatorTagHandler.java SheetTagHandler.java StrutTagHandler.java TabTagHandler.java TextfieldTagHandler.java ValueTagHandler.java WindowTagHandler.java WindowsTagHandler.java package.html Log Message: * all files: Switched to LGPL. Index: AbstractControlTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/AbstractControlTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** AbstractControlTagHandler.java 20 Apr 2003 02:12:26 -0000 1.12 --- AbstractControlTagHandler.java 27 Jun 2003 16:45:48 -0000 1.13 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: AbstractTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/AbstractTagHandler.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** AbstractTagHandler.java 10 Jun 2003 01:01:43 -0000 1.24 --- AbstractTagHandler.java 27 Jun 2003 16:45:48 -0000 1.25 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: AbstractValueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/AbstractValueTagHandler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** AbstractValueTagHandler.java 17 Oct 2002 02:02:32 -0000 1.8 --- AbstractValueTagHandler.java 27 Jun 2003 16:45:48 -0000 1.9 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: BorderTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/BorderTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BorderTagHandler.java 12 Jun 2003 16:55:34 -0000 1.4 --- BorderTagHandler.java 27 Jun 2003 16:45:48 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ButtonTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ButtonTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ButtonTagHandler.java 17 Oct 2002 02:02:32 -0000 1.5 --- ButtonTagHandler.java 27 Jun 2003 16:45:48 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: CheckTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/CheckTagHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** CheckTagHandler.java 10 Jun 2003 01:56:07 -0000 1.10 --- CheckTagHandler.java 27 Jun 2003 16:45:48 -0000 1.11 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ComboTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ComboTagHandler.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ComboTagHandler.java 10 Jun 2003 01:56:07 -0000 1.10 --- ComboTagHandler.java 27 Jun 2003 16:45:48 -0000 1.11 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ConstantTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ConstantTagHandler.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** ConstantTagHandler.java 24 Jun 2003 05:15:51 -0000 1.14 --- ConstantTagHandler.java 27 Jun 2003 16:45:48 -0000 1.15 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ConstraintsTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ConstraintsTagHandler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ConstraintsTagHandler.java 17 Oct 2002 02:02:33 -0000 1.8 --- ConstraintsTagHandler.java 27 Jun 2003 16:45:49 -0000 1.9 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ConstructorTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ConstructorTagHandler.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ConstructorTagHandler.java 6 Jun 2003 04:09:10 -0000 1.15 --- ConstructorTagHandler.java 27 Jun 2003 16:45:49 -0000 1.16 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ControlTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ControlTagHandler.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ControlTagHandler.java 17 Oct 2002 02:02:33 -0000 1.15 --- ControlTagHandler.java 27 Jun 2003 16:45:49 -0000 1.16 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ControlsTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ControlsTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ControlsTagHandler.java 24 Jun 2003 05:42:10 -0000 1.12 --- ControlsTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: GlueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/GlueTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** GlueTagHandler.java 12 Jun 2003 17:51:46 -0000 1.5 --- GlueTagHandler.java 27 Jun 2003 16:45:49 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: GridbagTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/GridbagTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** GridbagTagHandler.java 17 Oct 2002 02:02:33 -0000 1.7 --- GridbagTagHandler.java 27 Jun 2003 16:45:49 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ItemTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ItemTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ItemTagHandler.java 20 Apr 2003 02:12:27 -0000 1.9 --- ItemTagHandler.java 27 Jun 2003 16:45:49 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: LabelTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/LabelTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** LabelTagHandler.java 10 Jun 2003 01:56:07 -0000 1.11 --- LabelTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: LayoutTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/LayoutTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** LayoutTagHandler.java 17 Oct 2002 02:02:33 -0000 1.12 --- LayoutTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: MenuBarTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/MenuBarTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MenuBarTagHandler.java 14 Jun 2003 02:51:05 -0000 1.12 --- MenuBarTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: MenuTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/MenuTagHandler.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** MenuTagHandler.java 24 Jun 2003 05:19:34 -0000 1.8 --- MenuTagHandler.java 27 Jun 2003 16:45:49 -0000 1.9 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: MethodCallTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/MethodCallTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MethodCallTagHandler.java 17 Oct 2002 02:02:33 -0000 1.12 --- MethodCallTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,21 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ package jgb.handlers.swing; --- 1,21 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + package jgb.handlers.swing; Index: NullTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/NullTagHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NullTagHandler.java 25 Jun 2003 20:40:25 -0000 1.1 --- NullTagHandler.java 27 Jun 2003 16:45:49 -0000 1.2 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: ObjectTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ObjectTagHandler.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ObjectTagHandler.java 10 Jun 2003 01:56:07 -0000 1.13 --- ObjectTagHandler.java 27 Jun 2003 16:45:49 -0000 1.14 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: PanelTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/PanelTagHandler.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** PanelTagHandler.java 14 Jun 2003 02:52:27 -0000 1.7 --- PanelTagHandler.java 27 Jun 2003 16:45:49 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ParameterTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ParameterTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ParameterTagHandler.java 17 Oct 2002 02:02:33 -0000 1.9 --- ParameterTagHandler.java 27 Jun 2003 16:45:49 -0000 1.10 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: PropertyTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/PropertyTagHandler.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** PropertyTagHandler.java 17 Oct 2002 02:02:33 -0000 1.12 --- PropertyTagHandler.java 27 Jun 2003 16:45:49 -0000 1.13 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: RadioTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/RadioTagHandler.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** RadioTagHandler.java 10 Jun 2003 02:24:22 -0000 1.9 --- RadioTagHandler.java 27 Jun 2003 16:45:49 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: RefTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/RefTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** RefTagHandler.java 17 Oct 2002 02:02:33 -0000 1.11 --- RefTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: RegisterTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/RegisterTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** RegisterTagHandler.java 24 Jun 2003 06:26:33 -0000 1.5 --- RegisterTagHandler.java 27 Jun 2003 16:45:49 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ReturnTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ReturnTagHandler.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ReturnTagHandler.java 17 Oct 2002 02:02:33 -0000 1.6 --- ReturnTagHandler.java 27 Jun 2003 16:45:49 -0000 1.7 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: SeparatorTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/SeparatorTagHandler.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SeparatorTagHandler.java 12 Jun 2003 17:10:40 -0000 1.4 --- SeparatorTagHandler.java 27 Jun 2003 16:45:49 -0000 1.5 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: SheetTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/SheetTagHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SheetTagHandler.java 21 Jun 2003 05:38:04 -0000 1.2 --- SheetTagHandler.java 27 Jun 2003 16:45:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: StrutTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/StrutTagHandler.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** StrutTagHandler.java 12 Jun 2003 18:07:06 -0000 1.5 --- StrutTagHandler.java 27 Jun 2003 16:45:49 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TabTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/TabTagHandler.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TabTagHandler.java 21 Jun 2003 05:38:04 -0000 1.2 --- TabTagHandler.java 27 Jun 2003 16:45:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: TextfieldTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/TextfieldTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TextfieldTagHandler.java 10 Jun 2003 01:56:07 -0000 1.11 --- TextfieldTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.handlers.swing; Index: ValueTagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/handlers/swing/ValueTagHandler.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ValueTagHandler.java 17 Oct 2002 02:02:33 -0000 1.11 --- ValueTagHandler.java 27 Jun 2003 16:45:49 -0000 1.12 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write... [truncated message content] |
Update of /cvsroot/jgb/jgb/src/java/ant/org/apache/tools/ant/filters In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/ant/org/apache/tools/ant/filters Modified Files: AppendFilter.java BaseLineFilterReader.java HtmlToPhpFilterReader.java ReplaceXmlDeclWithPhpPrint.java Log Message: * all files: Switched to LGPL. Index: AppendFilter.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/ant/org/apache/tools/ant/filters/AppendFilter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AppendFilter.java 14 Jun 2003 15:24:07 -0000 1.1 --- AppendFilter.java 27 Jun 2003 16:45:48 -0000 1.2 *************** *** 1,2 **** --- 1,20 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package org.apache.tools.ant.filters; Index: BaseLineFilterReader.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/ant/org/apache/tools/ant/filters/BaseLineFilterReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BaseLineFilterReader.java 17 Jun 2003 16:36:39 -0000 1.1 --- BaseLineFilterReader.java 27 Jun 2003 16:45:48 -0000 1.2 *************** *** 1,2 **** --- 1,20 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package org.apache.tools.ant.filters; Index: HtmlToPhpFilterReader.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/ant/org/apache/tools/ant/filters/HtmlToPhpFilterReader.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** HtmlToPhpFilterReader.java 17 Jun 2003 19:08:37 -0000 1.4 --- HtmlToPhpFilterReader.java 27 Jun 2003 16:45:48 -0000 1.5 *************** *** 1,2 **** --- 1,20 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package org.apache.tools.ant.filters; Index: ReplaceXmlDeclWithPhpPrint.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/ant/org/apache/tools/ant/filters/ReplaceXmlDeclWithPhpPrint.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ReplaceXmlDeclWithPhpPrint.java 17 Jun 2003 16:36:39 -0000 1.2 --- ReplaceXmlDeclWithPhpPrint.java 27 Jun 2003 16:45:48 -0000 1.3 *************** *** 1,2 **** --- 1,20 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ package org.apache.tools.ant.filters; |
|
From: <fb...@us...> - 2003-06-27 17:16:28
|
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/tests/jgb/builder/utils Modified Files: AllTests.java TestAttributesMapAdapter.java TestConstructorCall.java TestCurrentObjectsStackManager.java TestKeyStrokeParser.java TestMethodCall.java TestParametersAccumulator.java Log Message: * all files: Switched to LGPL. Index: AllTests.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils/AllTests.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AllTests.java 14 Jun 2003 13:57:59 -0000 1.5 --- AllTests.java 27 Jun 2003 16:45:49 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: TestAttributesMapAdapter.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils/TestAttributesMapAdapter.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TestAttributesMapAdapter.java 24 Jun 2003 21:14:17 -0000 1.7 --- TestAttributesMapAdapter.java 27 Jun 2003 16:45:49 -0000 1.8 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: TestConstructorCall.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils/TestConstructorCall.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TestConstructorCall.java 10 Jun 2003 01:56:12 -0000 1.6 --- TestConstructorCall.java 27 Jun 2003 16:45:49 -0000 1.7 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestCurrentObjectsStackManager.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils/TestCurrentObjectsStackManager.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestCurrentObjectsStackManager.java 1 Oct 2002 02:27:49 -0000 1.3 --- TestCurrentObjectsStackManager.java 27 Jun 2003 16:45:49 -0000 1.4 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: TestKeyStrokeParser.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils/TestKeyStrokeParser.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestKeyStrokeParser.java 14 Jun 2003 13:57:59 -0000 1.1 --- TestKeyStrokeParser.java 27 Jun 2003 16:45:49 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: TestMethodCall.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils/TestMethodCall.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** TestMethodCall.java 10 Jun 2003 01:56:12 -0000 1.8 --- TestMethodCall.java 27 Jun 2003 16:45:49 -0000 1.9 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; Index: TestParametersAccumulator.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/utils/TestParametersAccumulator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TestParametersAccumulator.java 17 Oct 2002 02:02:34 -0000 1.3 --- TestParametersAccumulator.java 27 Jun 2003 16:45:49 -0000 1.4 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder.utils; |
Update of /cvsroot/jgb/jgb/src/java/tests/jgb/builder In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/tests/jgb/builder Modified Files: AbstractBuilderTest.java AllTests.java TestAgregation.java TestDefaultBuilder.java TestJgbEntityResolver.java Log Message: * all files: Switched to LGPL. Index: AbstractBuilderTest.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/AbstractBuilderTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AbstractBuilderTest.java 25 Jun 2003 02:29:42 -0000 1.1 --- AbstractBuilderTest.java 27 Jun 2003 16:45:49 -0000 1.2 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: AllTests.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/AllTests.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** AllTests.java 25 Jun 2003 02:29:42 -0000 1.10 --- AllTests.java 27 Jun 2003 16:45:49 -0000 1.11 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TestAgregation.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/TestAgregation.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** TestAgregation.java 25 Jun 2003 02:13:08 -0000 1.9 --- TestAgregation.java 27 Jun 2003 16:45:49 -0000 1.10 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder; Index: TestDefaultBuilder.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/TestDefaultBuilder.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestDefaultBuilder.java 25 Jun 2003 02:29:42 -0000 1.1 --- TestDefaultBuilder.java 27 Jun 2003 16:45:49 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder; Index: TestJgbEntityResolver.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/tests/jgb/builder/TestJgbEntityResolver.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TestJgbEntityResolver.java 21 Jun 2003 05:35:27 -0000 1.2 --- TestJgbEntityResolver.java 27 Jun 2003 16:45:49 -0000 1.3 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder; |
Update of /cvsroot/jgb/jgb/src/java/core/jgb/builder In directory sc8-pr-cvs1:/tmp/cvs-serv14842/src/java/core/jgb/builder Modified Files: Builder.java DefaultBuilder.java JgbEntityResolver.java TagHandler.java TagHandlerFactory.java WindowContext.java Log Message: * all files: Switched to LGPL. Index: Builder.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/Builder.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Builder.java 25 Jun 2003 02:13:08 -0000 1.25 --- Builder.java 27 Jun 2003 16:45:48 -0000 1.26 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: DefaultBuilder.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/DefaultBuilder.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DefaultBuilder.java 25 Jun 2003 02:19:49 -0000 1.2 --- DefaultBuilder.java 27 Jun 2003 16:45:48 -0000 1.3 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: JgbEntityResolver.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/JgbEntityResolver.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** JgbEntityResolver.java 21 Jun 2003 05:35:27 -0000 1.3 --- JgbEntityResolver.java 27 Jun 2003 16:45:48 -0000 1.4 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder; Index: TagHandler.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/TagHandler.java,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** TagHandler.java 10 Jun 2003 02:34:14 -0000 1.33 --- TagHandler.java 27 Jun 2003 16:45:48 -0000 1.34 *************** *** 1,20 **** ! /* ! * Copyright (C) 2002, Francois Beausoleil ! * ! * This program is free software; you can redistribute it and/or modify it ! * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2 of the License, or any later ! * version. * ! * This program is distributed in the hope that it will be useful, but ! * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ! * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ! * for more details. * ! * You should have received a copy of the GNU General Public License along ! * with this program; if not, write to the Free Software Foundation, Inc., ! * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * ! * You may contact the author of this software at: fb...@us... */ --- 1,19 ---- ! /** ! * Java Gui Builder - A library to build GUIs using an XML file. ! * Copyright 2002, 2003 (C) François Beausoleil * ! * This library is free software; you can redistribute it and/or ! * modify it under the terms of the GNU Lesser General Public ! * License as published by the Free Software Foundation; either ! * version 2.1 of the License, or (at your option) any later version. * ! * This library is distributed in the hope that it will be useful, ! * but WITHOUT ANY WARRANTY; without even the implied warranty of ! * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! * Lesser General Public License for more details. * ! * You should have received a copy of the GNU Lesser General Public ! * License along with this library; if not, write to the Free Software ! * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Index: TagHandlerFactory.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/TagHandlerFactory.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** TagHandlerFactory.java 20 Apr 2003 02:12:26 -0000 1.5 --- TagHandlerFactory.java 27 Jun 2003 16:45:48 -0000 1.6 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder; Index: WindowContext.java =================================================================== RCS file: /cvsroot/jgb/jgb/src/java/core/jgb/builder/WindowContext.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** WindowContext.java 6 Jun 2003 01:13:23 -0000 1.1 --- WindowContext.java 27 Jun 2003 16:45:48 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /** + * Java Gui Builder - A library to build GUIs using an XML file. + * Copyright 2002, 2003 (C) François Beausoleil + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + package jgb.builder; |