Thread: [Japi-cvs] SF.net SVN: japi:[835] progs/textedit/trunk/src/prj/net/sf/japi/progs/ textedit
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2009-02-14 23:01:16
|
Revision: 835
http://japi.svn.sourceforge.net/japi/?rev=835&view=rev
Author: christianhujer
Date: 2009-02-14 21:35:57 +0000 (Sat, 14 Feb 2009)
Log Message:
-----------
Updated copyright statements in source code.
Modified Paths:
--------------
progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java
progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java
progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/action.properties
Modified: progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java
===================================================================
--- progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java 2009-02-14 21:35:44 UTC (rev 834)
+++ progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java 2009-02-14 21:35:57 UTC (rev 835)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 Christian Hujer
+ *
+ * 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 3 of the License, or
+ * (at your option) 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.progs.textedit;
import java.awt.Component;
Modified: progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java
===================================================================
--- progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java 2009-02-14 21:35:44 UTC (rev 834)
+++ progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java 2009-02-14 21:35:57 UTC (rev 835)
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2009 Christian Hujer
+ *
+ * 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 3 of the License, or
+ * (at your option) 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, see <http://www.gnu.org/licenses/>.
+ */
+
package net.sf.japi.progs.textedit;
import java.io.BufferedReader;
Modified: progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/action.properties
===================================================================
--- progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/action.properties 2009-02-14 21:35:44 UTC (rev 834)
+++ progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/action.properties 2009-02-14 21:35:57 UTC (rev 835)
@@ -1 +1,18 @@
+#
+# Copyright (C) 2009 Christian Hujer
+#
+# 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 3 of the License, or
+# (at your option) 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, see <http://www.gnu.org/licenses/>.
+#
+
application.title=TextEdit
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <chr...@us...> - 2009-03-02 02:22:19
|
Revision: 1248
http://japi.svn.sourceforge.net/japi/?rev=1248&view=rev
Author: christianhujer
Date: 2009-03-02 01:32:13 +0000 (Mon, 02 Mar 2009)
Log Message:
-----------
Add @since information for classes and packages.
Modified Paths:
--------------
progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java
progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java
Modified: progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java
===================================================================
--- progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java 2009-03-02 01:31:58 UTC (rev 1247)
+++ progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextDocument.java 2009-03-02 01:32:13 UTC (rev 1248)
@@ -30,6 +30,7 @@
/** A TextDocument ist a {@link Document} for {link PlainDocument} from Swing.
* It listens to the {@link DocumentEvent}s from Swing and changes the Document state accordingly.
* @author <a href="mailto:ch...@ri...">Christian Hujer</a>
+ * @since 0.1
*/
public class TextDocument extends Document<PlainDocument> implements DocumentListener {
Modified: progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java
===================================================================
--- progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java 2009-03-02 01:31:58 UTC (rev 1247)
+++ progs/textedit/trunk/src/prj/net/sf/japi/progs/textedit/TextEditApplication.java 2009-03-02 01:32:13 UTC (rev 1248)
@@ -33,6 +33,7 @@
/**
* TODO
* @author <a href="mailto:ch...@ri...">Christian Hujer</a>
+ * @since 0.1
*/
public class TextEditApplication extends Application<PlainDocument> {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|