japi-cvs Mailing List for JAPI (Page 10)
Status: Beta
Brought to you by:
christianhujer
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
(115) |
May
(11) |
Jun
(5) |
Jul
(2) |
Aug
(10) |
Sep
(35) |
Oct
(14) |
Nov
(49) |
Dec
(27) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(57) |
Feb
(1) |
Mar
|
Apr
(2) |
May
(25) |
Jun
(134) |
Jul
(76) |
Aug
(34) |
Sep
(27) |
Oct
(5) |
Nov
|
Dec
(1) |
2008 |
Jan
(3) |
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(63) |
Nov
(30) |
Dec
(43) |
2009 |
Jan
(10) |
Feb
(420) |
Mar
(67) |
Apr
(3) |
May
(61) |
Jun
(21) |
Jul
(19) |
Aug
|
Sep
(6) |
Oct
(16) |
Nov
(1) |
Dec
|
2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
(7) |
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: <chr...@us...> - 2009-02-24 08:43:14
|
Revision: 1185 http://japi.svn.sourceforge.net/japi/?rev=1185&view=rev Author: christianhujer Date: 2009-02-24 08:43:10 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed bug - dest attribute missing on unzip task. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 08:42:09 UTC (rev 1184) +++ common/trunk/commonBuild.xml 2009-02-24 08:43:10 UTC (rev 1185) @@ -101,7 +101,7 @@ <target name="getPack200" unless="hasPack200"> <mkdir dir="${commonPath}/antlib.auto" /> <get src="https://java-pack200-ant-task.dev.java.net/files/documents/1526/6272/ant-task.zip" dest="${commonPath}/antlib.auto/ant-task.zip" usetimestamp="true" /> - <unzip src="${commonPath}/antlib.auto/ant-task.zip"> + <unzip src="${commonPath}/antlib.auto/ant-task.zip" dest="${commonPath}/antlib.auto"> <patternset includes="Pack200Task.jar" /> </unzip> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 08:42:12
|
Revision: 1184 http://japi.svn.sourceforge.net/japi/?rev=1184&view=rev Author: christianhujer Date: 2009-02-24 08:42:09 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed bug - wrong attribute name on get task. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 08:41:08 UTC (rev 1183) +++ common/trunk/commonBuild.xml 2009-02-24 08:42:09 UTC (rev 1184) @@ -100,7 +100,7 @@ <target name="getPack200" unless="hasPack200"> <mkdir dir="${commonPath}/antlib.auto" /> - <get src="https://java-pack200-ant-task.dev.java.net/files/documents/1526/6272/ant-task.zip" dest="${commonPath}/antlib.auto/ant-task.zip" usetimestamps="true" /> + <get src="https://java-pack200-ant-task.dev.java.net/files/documents/1526/6272/ant-task.zip" dest="${commonPath}/antlib.auto/ant-task.zip" usetimestamp="true" /> <unzip src="${commonPath}/antlib.auto/ant-task.zip"> <patternset includes="Pack200Task.jar" /> </unzip> @@ -108,7 +108,7 @@ <target name="getAntmeat" unless="hasAntmeat"> <mkdir dir="${commonPath}/antlib.auto" /> - <get src="http://downloads.sourceforge.net/antmeat/antmeat-0.3.zip" dest="${commonPath}/antlib.auto/antmeat-0.3.zip" usetimestamps="true" /> + <get src="http://downloads.sourceforge.net/antmeat/antmeat-0.3.zip" dest="${commonPath}/antlib.auto/antmeat-0.3.zip" usetimestamp="true" /> <unzip src="${commonPath}/antlib.auto/antmeat-0.3.zip" dest="${commonPath}/antlib.auto"> <patternset includes="**/*.jar" /> </unzip> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 08:41:13
|
Revision: 1183 http://japi.svn.sourceforge.net/japi/?rev=1183&view=rev Author: christianhujer Date: 2009-02-24 08:41:08 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed bug - can't define downloaded tasks on top-level before download. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 08:34:56 UTC (rev 1182) +++ common/trunk/commonBuild.xml 2009-02-24 08:41:08 UTC (rev 1183) @@ -90,10 +90,6 @@ <available property="hasPack200" file="${commonPath}/antlib.auto/Pack200Task.jar" /> <available property="hasTaglets" file="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> -<taskdef name="freshmeat" classpath="${commonPath}/antlib.auto/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement" /> -<taskdef name="pack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> -<taskdef name="unpack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Unpack200Task" /> - <!-- targets are sorted alphabetically. --> <target @@ -125,6 +121,7 @@ description = "announce new version on freshmeat.net" depends = "getAntmeat" > + <taskdef name="freshmeat" classpath="${commonPath}/antlib.auto/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement" /> <echo>Announcing. Press return to start announcing this release at FreshMeat.</echo> <input /> <echo><![CDATA[ @@ -268,6 +265,9 @@ description = "Creates and packs distribution archives." depends = "clean, compile, test, doc, build, getPack200" > + <taskdef name="pack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> + <taskdef name="unpack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Unpack200Task" /> + <mkdir dir="dist" /> <parallel> <tar tarfile="${distPath}.src.tar" longfile="gnu"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 08:34:59
|
Revision: 1182 http://japi.svn.sourceforge.net/japi/?rev=1182&view=rev Author: christianhujer Date: 2009-02-24 08:34:56 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Replaced Pack200Task.jar with automatic download. Modified Paths: -------------- common/trunk/commonBuild.xml Removed Paths: ------------- common/trunk/antlib/LICENSE-Pack200Task.jar common/trunk/antlib/Pack200Task.jar Deleted: common/trunk/antlib/LICENSE-Pack200Task.jar =================================================================== --- common/trunk/antlib/LICENSE-Pack200Task.jar 2009-02-24 08:20:58 UTC (rev 1181) +++ common/trunk/antlib/LICENSE-Pack200Task.jar 2009-02-24 08:34:56 UTC (rev 1182) @@ -1,471 +0,0 @@ -SUN PUBLIC LICENSE Version 1.0 - -1. Definitions. - - 1.0.1. "Commercial Use" means distribution or otherwise making the - Covered Code available to a third party. - - 1.1. "Contributor" means each entity that creates or contributes to - the creation of Modifications. - - 1.2. "Contributor Version" means the combination of the Original Code, - prior Modifications used by a Contributor, and the Modifications made - by that particular Contributor. - - 1.3. "Covered Code" means the Original Code or Modifications or the - combination of the Original Code and Modifications, in each case - including portions thereof and corresponding documentation released - with the source code. - - 1.4. "Electronic Distribution Mechanism" means a mechanism generally - accepted in the software development community for the electronic - transfer of data. - - 1.5. "Executable" means Covered Code in any form other than Source - Code. - - 1.6. "Initial Developer" means the individual or entity identified as - the Initial Developer in the Source Code notice required by Exhibit A. - - 1.7. "Larger Work" means a work which combines Covered Code or - portions thereof with code not governed by the terms of this License. - - 1.8. "License" means this document. - - 1.8.1. "Licensable" means having the right to grant, to the maximum - extent possible, whether at the time of the initial grant or - subsequently acquired, any and all of the rights conveyed herein. - - 1.9. "Modifications" means any addition to or deletion from the - substance or structure of either the Original Code or any previous - Modifications. When Covered Code is released as a series of files, a - Modification is: - - A. Any addition to or deletion from the contents of a file containing - Original Code or previous Modifications. - - B. Any new file that contains any part of the Original Code or - previous Modifications. - - 1.10. "Original Code" means Source Code of computer software code - which is described in the Source Code notice required by Exhibit A as - Original Code, and which, at the time of its release under this - License is not already Covered Code governed by this License. - - 1.10.1. "Patent Claims" means any patent claim(s), now owned or - hereafter acquired, including without limitation, method, process, and - apparatus claims, in any patent Licensable by grantor. - - 1.11. "Source Code" means the preferred form of the Covered Code for - making modifications to it, including all modules it contains, plus - any associated documentation, interface definition files, scripts used - to control compilation and installation of an Executable, or source - code differential comparisons against either the Original Code or - another well known, available Covered Code of the Contributor's - choice. The Source Code can be in a compressed or archival form, - provided the appropriate decompression or de-archiving software is - widely available for no charge. - - 1.12. "You" (or "Your") means an individual or a legal entity - exercising rights under, and complying with all of the terms of, this - License or a future version of this License issued under Section 6.1. - For legal entities, "You" includes any entity which controls, is - controlled by, or is under common control with You. For purposes of - this definition, "control" means (a) the power, direct or indirect, to - cause the direction or management of such entity, whether by contract - or otherwise, or (b) ownership of more than fifty percent (50%) of the - outstanding shares or beneficial ownership of such entity. - -2. Source Code License. - -2.1 The Initial Developer Grant. - - The Initial Developer hereby grants You a world-wide, royalty-free, - non-exclusive license, subject to third party intellectual property - claims: - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Initial Developer to use, reproduce, modify, - display, perform, sublicense and distribute the Original Code (or - portions thereof) with or without Modifications, and/or as part of a - Larger Work; and - - (b) under Patent Claims infringed by the making, using or selling of - Original Code, to make, have made, use, practice, sell, and offer for - sale, and/or otherwise dispose of the Original Code (or portions - thereof). - - (c) the licenses granted in this Section 2.1(a) and (b) are effective - on the date Initial Developer first distributes Original Code under - the terms of this License. - - (d) Notwithstanding Section 2.1(b) above, no patent license is - granted: 1) for code that You delete from the Original Code; 2) - separate from the Original Code; or 3) for infringements caused by: - i) the modification of the Original Code or ii) the combination of the - Original Code with other software or devices. - -2.2. Contributor Grant. - - Subject to third party intellectual property claims, each Contributor - hereby grants You a world-wide, royalty-free, non-exclusive license - - (a) under intellectual property rights (other than patent or - trademark) Licensable by Contributor, to use, reproduce, modify, - display, perform, sublicense and distribute the Modifications created - by such Contributor (or portions thereof) either on an unmodified - basis, with other Modifications, as Covered Code and/or as part of a - Larger Work; and - - (b) under Patent Claims infringed by the making, using, or selling of - Modifications made by that Contributor either alone and/or in - combination with its Contributor Version (or portions of such - combination), to make, use, sell, offer for sale, have made, and/or - otherwise dispose of: 1) Modifications made by that Contributor (or - portions thereof); and 2) the combination of Modifications made by - that Contributor with its Contributor Version (or portions of such - combination). - - (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective - on the date Contributor first makes Commercial Use of the Covered - Code. - - (d) notwithstanding Section 2.2(b) above, no patent license is - granted: 1) for any code that Contributor has deleted from the - Contributor Version; 2) separate from the Contributor Version; 3) for - infringements caused by: i) third party modifications of Contributor - Version or ii) the combination of Modifications made by that - Contributor with other software (except as part of the Contributor - Version) or other devices; or 4) under Patent Claims infringed by - Covered Code in the absence of Modifications made by that Contributor. - -3. Distribution Obligations. - -3.1. Application of License. - - The Modifications which You create or to which You contribute are - governed by the terms of this License, including without limitation - Section 2.2. The Source Code version of Covered Code may be - distributed only under the terms of this License or a future version - of this License released under Section 6.1, and You must include a - copy of this License with every copy of the Source Code You - distribute. You may not offer or impose any terms on any Source Code - version that alters or restricts the applicable version of this - License or the recipients' rights hereunder. However, You may include - an additional document offering the additional rights described in - Section 3.5. - -3.2. Availability of Source Code. - - Any Modification which You create or to which You contribute must be - made available in Source Code form under the terms of this License - either on the same media as an Executable version or via an accepted - Electronic Distribution Mechanism to anyone to whom you made an - Executable version available; and if made available via Electronic - Distribution Mechanism, must remain available for at least twelve (12) - months after the date it initially became available, or at least six - (6) months after a subsequent version of that particular Modification - has been made available to such recipients. You are responsible for - ensuring that the Source Code version remains available even if the - Electronic Distribution Mechanism is maintained by a third party. - -3.3. Description of Modifications. - - You must cause all Covered Code to which You contribute to contain a - file documenting the changes You made to create that Covered Code and - the date of any change. You must include a prominent statement that - the Modification is derived, directly or indirectly, from Original - Code provided by the Initial Developer and including the name of the - Initial Developer in (a) the Source Code, and (b) in any notice in an - Executable version or related documentation in which You describe the - origin or ownership of the Covered Code. - -3.4. Intellectual Property Matters. - - (a) Third Party Claims. - - If Contributor has knowledge that a license under a third party's - intellectual property rights is required to exercise the rights - granted by such Contributor under Sections 2.1 or 2.2, Contributor - must include a text file with the Source Code distribution titled - "LEGAL'' which describes the claim and the party making the claim in - sufficient detail that a recipient will know whom to contact. If - Contributor obtains such knowledge after the Modification is made - available as described in Section 3.2, Contributor shall promptly - modify the LEGAL file in all copies Contributor makes available - thereafter and shall take other steps (such as notifying appropriate - mailing lists or newsgroups) reasonably calculated to inform those who - received the Covered Code that new knowledge has been obtained. - - (b) Contributor APIs. - - If Contributor's Modifications include an application programming - interface ("API") and Contributor has knowledge of patent licenses - which are reasonably necessary to implement that API, Contributor must - also include this information in the LEGAL file. - - (c) Representations. - - Contributor represents that, except as disclosed pursuant to Section - 3.4(a) above, Contributor believes that Contributor's Modifications - are Contributor's original creation(s) and/or Contributor has - sufficient rights to grant the rights conveyed by this License. - -3.5. Required Notices. - - You must duplicate the notice in Exhibit A in each file of the Source - Code. If it is not possible to put such notice in a particular Source - Code file due to its structure, then You must include such notice in a - location (such as a relevant directory) where a user would be likely - to look for such a notice. If You created one or more Modification(s) - You may add your name as a Contributor to the notice described in - Exhibit A. You must also duplicate this License in any documentation - for the Source Code where You describe recipients' rights or ownership - rights relating to Covered Code. You may choose to offer, and to - charge a fee for, warranty, support, indemnity or liability - obligations to one or more recipients of Covered Code. However, You - may do so only on Your own behalf, and not on behalf of the Initial - Developer or any Contributor. You must make it absolutely clear than - any such warranty, support, indemnity or liability obligation is - offered by You alone, and You hereby agree to indemnify the Initial - Developer and every Contributor for any liability incurred by the - Initial Developer or such Contributor as a result of warranty, - support, indemnity or liability terms You offer. - -3.6. Distribution of Executable Versions. - - You may distribute Covered Code in Executable form only if the - requirements of Section 3.1-3.5 have been met for that Covered Code, - and if You include a notice stating that the Source Code version of - the Covered Code is available under the terms of this License, - including a description of how and where You have fulfilled the - obligations of Section 3.2. The notice must be conspicuously included - in any notice in an Executable version, related documentation or - collateral in which You describe recipients' rights relating to the - Covered Code. You may distribute the Executable version of Covered - Code or ownership rights under a license of Your choice, which may - contain terms different from this License, provided that You are in - compliance with the terms of this License and that the license for the - Executable version does not attempt to limit or alter the recipient's - rights in the Source Code version from the rights set forth in this - License. If You distribute the Executable version under a different - license You must make it absolutely clear that any terms which differ - from this License are offered by You alone, not by the Initial - Developer or any Contributor. You hereby agree to indemnify the - Initial Developer and every Contributor for any liability incurred by - the Initial Developer or such Contributor as a result of any such - terms You offer. - -3.7. Larger Works. - - You may create a Larger Work by combining Covered Code with other code - not governed by the terms of this License and distribute the Larger - Work as a single product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered Code. - -4. Inability to Comply Due to Statute or Regulation. - - If it is impossible for You to comply with any of the terms of this - License with respect to some or all of the Covered Code due to - statute, judicial order, or regulation then You must: (a) comply with - the terms of this License to the maximum extent possible; and (b) - describe the limitations and the code they affect. Such description - must be included in the LEGAL file described in Section 3.4 and must - be included with all distributions of the Source Code. Except to the - extent prohibited by statute or regulation, such description must be - sufficiently detailed for a recipient of ordinary skill to be able to - understand it. - -5. Application of this License. - - This License applies to code to which the Initial Developer has - attached the notice in Exhibit A and to related Covered Code. - -6. Versions of the License. - -6.1. New Versions. - - Sun Microsystems, Inc. ("Sun") may publish revised and/or new versions - of the License from time to time. Each version will be given a - distinguishing version number. - -6.2. Effect of New Versions. - - Once Covered Code has been published under a particular version of the - License, You may always continue to use it under the terms of that - version. You may also choose to use such Covered Code under the terms - of any subsequent version of the License published by Sun. No one - other than Sun has the right to modify the terms applicable to Covered - Code created under this License. - -6.3. Derivative Works. - - If You create or use a modified version of this License (which you may - only do in order to apply it to code which is not already Covered Code - governed by this License), You must: (a) rename Your license so that - the phrases "Sun," "Sun Public License," or "SPL" or any confusingly - similar phrase do not appear in your license (except to note that your - license differs from this License) and (b) otherwise make it clear - that Your version of the license contains terms which differ from the - Sun Public License. (Filling in the name of the Initial Developer, - Original Code or Contributor in the notice described in Exhibit A - shall not of themselves be deemed to be modifications of this - License.) - -7. DISCLAIMER OF WARRANTY. - - COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS'' BASIS, - WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, - WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF - DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE - IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, - YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE - COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER - OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF - ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. - -8. TERMINATION. - - 8.1. This License and the rights granted hereunder will terminate - automatically if You fail to comply with terms herein and fail to cure - such breach within 30 days of becoming aware of the breach. All - sublicenses to the Covered Code which are properly granted shall - survive any termination of this License. Provisions which, by their - nature, must remain in effect beyond the termination of this License - shall survive. - - 8.2. If You initiate litigation by asserting a patent infringement - claim (excluding declaratory judgment actions) against Initial Developer - or a Contributor (the Initial Developer or Contributor against whom - You file such action is referred to as "Participant") alleging that: - - (a) such Participant's Contributor Version directly or indirectly - infringes any patent, then any and all rights granted by such - Participant to You under Sections 2.1 and/or 2.2 of this License - shall, upon 60 days notice from Participant terminate prospectively, - unless if within 60 days after receipt of notice You either: (i) - agree in writing to pay Participant a mutually agreeable reasonable - royalty for Your past and future use of Modifications made by such - Participant, or (ii) withdraw Your litigation claim with respect to - the Contributor Version against such Participant. If within 60 days - of notice, a reasonable royalty and payment arrangement are not - mutually agreed upon in writing by the parties or the litigation claim - is not withdrawn, the rights granted by Participant to You under - Sections 2.1 and/or 2.2 automatically terminate at the expiration of - the 60 day notice period specified above. - - (b) any software, hardware, or device, other than such Participant's - Contributor Version, directly or indirectly infringes any patent, then - any rights granted to You by such Participant under Sections 2.1(b) - and 2.2(b) are revoked effective as of the date You first made, used, - sold, distributed, or had made, Modifications made by that - Participant. - - 8.3. If You assert a patent infringement claim against Participant - alleging that such Participant's Contributor Version directly or - indirectly infringes any patent where such claim is resolved (such as - by license or settlement) prior to the initiation of patent - infringement litigation, then the reasonable value of the licenses - granted by such Participant under Sections 2.1 or 2.2 shall be taken - into account in determining the amount or value of any payment or - license. - - 8.4. In the event of termination under Sections 8.1 or 8.2 above, all - end user license agreements (excluding distributors and resellers) - which have been validly granted by You or any distributor hereunder - prior to termination shall survive termination. - -9. LIMITATION OF LIABILITY. - - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT - (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL - DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, - OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR - ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY - CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, - WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER - COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN - INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF - LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY - RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW - PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE - EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO - THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. - -10. U.S. GOVERNMENT END USERS. - - The Covered Code is a "commercial item," as that term is defined in 48 - C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" - and "commercial computer software documentation," as such terms are - used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. - 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all - U.S. Government End Users acquire Covered Code with only those rights - set forth herein. - -11. MISCELLANEOUS. - - This License represents the complete agreement concerning subject - matter hereof. If any provision of this License is held to be - unenforceable, such provision shall be reformed only to the extent - necessary to make it enforceable. This License shall be governed by - California law provisions (except to the extent applicable law, if - any, provides otherwise), excluding its conflict-of-law provisions. - With respect to disputes in which at least one party is a citizen of, - or an entity chartered or registered to do business in the United - States of America, any litigation relating to this License shall be - subject to the jurisdiction of the Federal Courts of the Northern - District of California, with venue lying in Santa Clara County, - California, with the losing party responsible for costs, including - without limitation, court costs and reasonable attorneys' fees and - expenses. The application of the United Nations Convention on - Contracts for the International Sale of Goods is expressly excluded. - Any law or regulation which provides that the language of a contract - shall be construed against the drafter shall not apply to this - License. - -12. RESPONSIBILITY FOR CLAIMS. - - As between Initial Developer and the Contributors, each party is - responsible for claims and damages arising, directly or indirectly, - out of its utilization of rights under this License and You agree to - work with Initial Developer and Contributors to distribute such - responsibility on an equitable basis. Nothing herein is intended or - shall be deemed to constitute any admission of liability. - -13. MULTIPLE-LICENSED CODE. - - Initial Developer may designate portions of the Covered Code as - "Multiple-Licensed". "Multiple-Licensed" means that the Initial - Developer permits you to utilize portions of the Covered Code under - Your choice of the alternative licenses, if any, specified by the - Initial Developer in the file described in Exhibit A. - -Exhibit A -Sun Public License Notice. - - The contents of this file are subject to the Sun Public License - Version 1.0 (the "License"); you may not use this file except in - compliance with the License. A copy of the License is available at - http://www.sun.com/ - - The Original Code is _________________. The Initial Developer of the - Original Code is ___________. Portions created by ______ are Copyright - (C)_________. All Rights Reserved. - - Contributor(s): ______________________________________. - - Alternatively, the contents of this file may be used under the terms - of the _____ license (the "[___] License"), in which case the - provisions of [______] License are applicable instead of those above. - If you wish to allow use of your version of this file only under the - terms of the [____] License and not to allow others to use your - version of this file under the SPL, indicate your decision by deleting - the provisions above and replace them with the notice and other - provisions required by the [___] License. If you do not delete the - provisions above, a recipient may use your version of this file under - either the SPL or the [___] License." - - [NOTE: The text of this Exhibit A may differ slightly from the text of - the notices in the Source Code files of the Original Code. You should - use the text of this Exhibit A rather than the text found in the - Original Code Source Code for Your Modifications.] Deleted: common/trunk/antlib/Pack200Task.jar =================================================================== (Binary files differ) Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 08:20:58 UTC (rev 1181) +++ common/trunk/commonBuild.xml 2009-02-24 08:34:56 UTC (rev 1182) @@ -86,11 +86,13 @@ <available property="hasAntmeat" file="${commonPath}/antlib.auto/antmeat.jar" /> <available property="hasCheckstyle" file="${commonPath}/antlib.auto/checkstyle-all-4.4.jar" /> +<available property="hasJunit" file="${commonPath}/antlib.auto/junit.jar" /> +<available property="hasPack200" file="${commonPath}/antlib.auto/Pack200Task.jar" /> <available property="hasTaglets" file="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> -<available property="hasJunit" file="${commonPath}/antlib.auto/junit.jar" /> -<taskdef name="freshmeat" classpath="${commonPath}/antlib/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement" /> -<taskdef name="pack200" classpath="${commonPath}/antlib/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> +<taskdef name="freshmeat" classpath="${commonPath}/antlib.auto/antmeat.jar" classname="de.frewert.ant.freshmeat.Announcement" /> +<taskdef name="pack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" /> +<taskdef name="unpack200" classpath="${commonPath}/antlib.auto/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Unpack200Task" /> <!-- targets are sorted alphabetically. --> @@ -100,6 +102,14 @@ depends = "compile, test" /> +<target name="getPack200" unless="hasPack200"> + <mkdir dir="${commonPath}/antlib.auto" /> + <get src="https://java-pack200-ant-task.dev.java.net/files/documents/1526/6272/ant-task.zip" dest="${commonPath}/antlib.auto/ant-task.zip" usetimestamps="true" /> + <unzip src="${commonPath}/antlib.auto/ant-task.zip"> + <patternset includes="Pack200Task.jar" /> + </unzip> +</target> + <target name="getAntmeat" unless="hasAntmeat"> <mkdir dir="${commonPath}/antlib.auto" /> <get src="http://downloads.sourceforge.net/antmeat/antmeat-0.3.zip" dest="${commonPath}/antlib.auto/antmeat-0.3.zip" usetimestamps="true" /> @@ -256,7 +266,7 @@ <target name = "dist" description = "Creates and packs distribution archives." - depends = "clean, compile, test, doc, build" + depends = "clean, compile, test, doc, build, getPack200" > <mkdir dir="dist" /> <parallel> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 08:21:01
|
Revision: 1181 http://japi.svn.sourceforge.net/japi/?rev=1181&view=rev Author: christianhujer Date: 2009-02-24 08:20:58 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Replaced antmeat.jar with automatic download. Modified Paths: -------------- common/trunk/commonBuild.xml Removed Paths: ------------- common/trunk/antlib/LICENSE-antmeat.jar common/trunk/antlib/antmeat.jar Deleted: common/trunk/antlib/LICENSE-antmeat.jar =================================================================== --- common/trunk/antlib/LICENSE-antmeat.jar 2009-02-24 02:27:52 UTC (rev 1180) +++ common/trunk/antlib/LICENSE-antmeat.jar 2009-02-24 08:20:58 UTC (rev 1181) @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. Deleted: common/trunk/antlib/antmeat.jar =================================================================== (Binary files differ) Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 02:27:52 UTC (rev 1180) +++ common/trunk/commonBuild.xml 2009-02-24 08:20:58 UTC (rev 1181) @@ -84,6 +84,7 @@ <fileset dir="${commonPath}" includes="lib/*.jar" excludes="lib/LICENSE-*.jar" /> </path> +<available property="hasAntmeat" file="${commonPath}/antlib.auto/antmeat.jar" /> <available property="hasCheckstyle" file="${commonPath}/antlib.auto/checkstyle-all-4.4.jar" /> <available property="hasTaglets" file="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> <available property="hasJunit" file="${commonPath}/antlib.auto/junit.jar" /> @@ -99,9 +100,20 @@ depends = "compile, test" /> +<target name="getAntmeat" unless="hasAntmeat"> + <mkdir dir="${commonPath}/antlib.auto" /> + <get src="http://downloads.sourceforge.net/antmeat/antmeat-0.3.zip" dest="${commonPath}/antlib.auto/antmeat-0.3.zip" usetimestamps="true" /> + <unzip src="${commonPath}/antlib.auto/antmeat-0.3.zip" dest="${commonPath}/antlib.auto"> + <patternset includes="**/*.jar" /> + </unzip> + <move file="${commonPath}/antlib.auto/antmeat-0.3/antmeat.jar" tofile="${commonPath}/antlib.auto/antmeat.jar" /> + <delete dir="${commonPath}/antlib.auto/antmeat-0.3/" /> +</target> + <target name = "announce" description = "announce new version on freshmeat.net" + depends = "getAntmeat" > <echo>Announcing. Press return to start announcing this release at FreshMeat.</echo> <input /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 03:22:26
|
Revision: 1169 http://japi.svn.sourceforge.net/japi/?rev=1169&view=rev Author: christianhujer Date: 2009-02-24 02:23:27 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/AbstractTreeTableModel.java Modified: libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/AbstractTreeTableModel.java =================================================================== --- libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/AbstractTreeTableModel.java 2009-02-24 02:22:54 UTC (rev 1168) +++ libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/AbstractTreeTableModel.java 2009-02-24 02:23:27 UTC (rev 1169) @@ -52,7 +52,11 @@ return getChildCount(node) == 0; } - /** {@inheritDoc} */ + /** Returns the index of the specified child. + * @param parent Parent within which the index of the child shall be returned. + * @param child Child of which the index shall be returned. + * @return The index of child in parent or -1 if child is not a child of parent. + */ @SuppressWarnings({"TypeMayBeWeakened"}) public int getIndexOfChild(final T parent, final T child) { for (int i = 0; i < getChildCount(parent); i++) { @@ -63,12 +67,16 @@ return -1; } - /** {@inheritDoc} */ + /** Registers a TreeModelListener with this TreeTableModel. + * @param l TreeModelListener to register. + */ public void addTreeModelListener(final TreeModelListener l) { listenerList.add(TreeModelListener.class, l); } - /** {@inheritDoc} */ + /** Unregisters a TreeModelListener with this TreeTableModel. + * @param l TreeModelListener to unregister. + */ public void removeTreeModelListener(final TreeModelListener l) { listenerList.remove(TreeModelListener.class, l); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 03:22:10
|
Revision: 1168 http://japi.svn.sourceforge.net/japi/?rev=1168&view=rev Author: christianhujer Date: 2009-02-24 02:22:54 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed wrong todo format. Modified Paths: -------------- libs/net/trunk/src/prj/net/sf/japi/net/Forwarder.java Modified: libs/net/trunk/src/prj/net/sf/japi/net/Forwarder.java =================================================================== --- libs/net/trunk/src/prj/net/sf/japi/net/Forwarder.java 2009-02-24 02:22:18 UTC (rev 1167) +++ libs/net/trunk/src/prj/net/sf/japi/net/Forwarder.java 2009-02-24 02:22:54 UTC (rev 1168) @@ -82,7 +82,7 @@ } catch (final InterruptedException ignore) { /* ignore */ } catch (final IOException e) { - e.printStackTrace(); //TODO + e.printStackTrace(); // TODO:2009-02-23:christianhujer:Better handling of the exception. } finally { try { s1.close(); } catch (final IOException ignore) { /* ignore */ } try { s2.close(); } catch (final IOException ignore) { /* ignore */ } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:29:00
|
Revision: 1167 http://japi.svn.sourceforge.net/japi/?rev=1167&view=rev Author: christianhujer Date: 2009-02-24 02:22:18 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java Modified: tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java =================================================================== --- tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java 2009-02-24 01:27:53 UTC (rev 1166) +++ tools/replacer/trunk/src/tst/test/net/sf/japi/tools/replacer/SubstitutionTest.java 2009-02-24 02:22:18 UTC (rev 1167) @@ -30,7 +30,7 @@ @SuppressWarnings({"InstanceMethodNamingConvention"}) public class SubstitutionTest { - /** Tests that {@link Substitution (String, String)} works. */ + /** Tests that {@link Substitution#Substitution(String[])} works. */ @Test public void testSimpleSubstitution() { final Substitution testling = new Substitution("foo", "bar"); @@ -42,7 +42,7 @@ Assert.assertEquals("Substitution(\"foo\", \"bar\") must replace all occurrences of foo by bar.", "my bar my foo fuzz", replaced); } - /** Tests that {@link Substitution(String)} works for simple substitutions. */ + /** Tests that {@link Substitution#parseRegex(CharSequence)} works for simple substitutions. */ @Test public void testParseSimple() { final Substitution testling = new Substitution("s/foo/bar/g"); @@ -54,7 +54,7 @@ Assert.assertEquals("s/foo/bar/g must replace all occurrences of foo by bar.", "my bar my bar fuzz", replaced); } - /** Tests that {@link Substitution(String)} works when the substitution contains an escaped slash. */ + /** Tests that {@link Substitution#parseRegex(CharSequence)} works when the substitution contains an escaped slash. */ @Test public void testParseRegexEscapedSlash() { final String[] parsed = Substitution.parseRegex("s/f\\/oo/bar/"); @@ -64,7 +64,7 @@ Assert.assertEquals("Third element must be flags.", "" , parsed[2]); } - /** Tests that {@link Substitution(String)} throws an exception with a malformed substitution specification. */ + /** Tests that {@link Substitution#parseRegex(CharSequence)} throws an exception with a malformed substitution specification. */ @Test(expected = IllegalArgumentException.class) public void testParseRegexBogus() { Substitution.parseRegex("s/f\\/oo/bar"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:50
|
Revision: 1175 http://japi.svn.sourceforge.net/japi/?rev=1175&view=rev Author: christianhujer Date: 2009-02-24 02:25:28 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- libs/swing-bookmarks/trunk/src/prj/net/sf/japi/swing/bookmarks/BookmarkManager.java Modified: libs/swing-bookmarks/trunk/src/prj/net/sf/japi/swing/bookmarks/BookmarkManager.java =================================================================== --- libs/swing-bookmarks/trunk/src/prj/net/sf/japi/swing/bookmarks/BookmarkManager.java 2009-02-24 02:25:19 UTC (rev 1174) +++ libs/swing-bookmarks/trunk/src/prj/net/sf/japi/swing/bookmarks/BookmarkManager.java 2009-02-24 02:25:28 UTC (rev 1175) @@ -311,7 +311,7 @@ //} /** Create a Bookmark. - * You must not forget to invoke {@link Bookmark#setFolder(BookmarkFolder)} in order to make {@link #getParent()} for JTrees working. + * You must not forget to invoke {@link #setFolder(BookmarkManager.BookmarkFolder)} in order to make {@link #getParent()} for JTrees working. * @param title title for Bookmark */ protected Bookmark(@NotNull final String title) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:47
|
Revision: 1178 http://japi.svn.sourceforge.net/japi/?rev=1178&view=rev Author: christianhujer Date: 2009-02-24 02:26:35 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java Modified: progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java =================================================================== --- progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java 2009-02-24 02:26:08 UTC (rev 1177) +++ progs/jhexview/trunk/src/prj/net/sf/japi/progs/jhexview/HexViewPane.java 2009-02-24 02:26:35 UTC (rev 1178) @@ -29,16 +29,24 @@ public class HexViewPane extends JPanel { - /** The data to show. */ + /** The data to show. + * @serial include + */ private final byte[] data; - /** The columns to show. */ + /** The columns to show. + * @serial include + */ private final int cols = 16; - /** The rows to show. */ + /** The rows to show. + * @serial include + */ private final int rows; - /** The TextArea that displays the hex info. */ + /** The TextArea that displays the hex info. + * @serial include + */ private final JTextArea textArea = new JTextArea(25, cols * 4 + 8); /** Creates a HexViewPane. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:45
|
Revision: 1170 http://japi.svn.sourceforge.net/japi/?rev=1170&view=rev Author: christianhujer Date: 2009-02-24 02:23:51 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed wrong todo format. Modified Paths: -------------- libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/JTreeTable.java libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/TreeTableModelTreeModelAdapter.java Modified: libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/JTreeTable.java =================================================================== --- libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/JTreeTable.java 2009-02-24 02:23:27 UTC (rev 1169) +++ libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/JTreeTable.java 2009-02-24 02:23:51 UTC (rev 1170) @@ -154,7 +154,7 @@ /** {@inheritDoc} */ public Object getCellEditorValue() { - return ""; //TODO + return ""; // TODO:2009-02-24:christianhujer:Implement. } } // class TreeTableCellEditor Modified: libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/TreeTableModelTreeModelAdapter.java =================================================================== --- libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/TreeTableModelTreeModelAdapter.java 2009-02-24 02:23:27 UTC (rev 1169) +++ libs/swing-treetable/trunk/src/prj/net/sf/japi/swing/treetable/TreeTableModelTreeModelAdapter.java 2009-02-24 02:23:51 UTC (rev 1170) @@ -72,17 +72,17 @@ /** {@inheritDoc} */ public int getIndexOfChild(final Object parent, final Object child) { - return 0; //TODO + return 0; // TODO:2009-02-24:christianhujer:Implement. } /** {@inheritDoc} */ public void addTreeModelListener(final TreeModelListener l) { - //TODO + // TODO:2009-02-24:christianhujer:Implement. } /** {@inheritDoc} */ public void removeTreeModelListener(final TreeModelListener l) { - //TODO + // TODO:2009-02-24:christianhujer:Implement. } } // class TreeTableModelTreeModelAdapter This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:45
|
Revision: 1177 http://japi.svn.sourceforge.net/japi/?rev=1177&view=rev Author: christianhujer Date: 2009-02-24 02:26:08 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java Modified: progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java =================================================================== --- progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java 2009-02-24 02:26:00 UTC (rev 1176) +++ progs/jhexedit/trunk/src/prj/net/sf/japi/progs/jhexedit/HexEditPane.java 2009-02-24 02:26:08 UTC (rev 1177) @@ -28,16 +28,24 @@ */ public class HexEditPane extends JPanel { - /** The data to show. */ + /** The data to show. + * @serial include + */ private final byte[] data; - /** The columns to show. */ + /** The columns to show. + * @serial include + */ private final int cols = 16; - /** The rows to show. */ + /** The rows to show. + * @serial include + */ private final int rows; - /** The TextArea that displays the hex info. */ + /** The TextArea that displays the hex info. + * @serial include + */ private final JTextArea textArea = new JTextArea(25, cols * 4 + 8); /** Creates a HexEditPane. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:44
|
Revision: 1179 http://japi.svn.sourceforge.net/japi/?rev=1179&view=rev Author: christianhujer Date: 2009-02-24 02:27:09 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java Modified: progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java =================================================================== --- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java 2009-02-24 02:26:35 UTC (rev 1178) +++ progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/Card.java 2009-02-24 02:27:09 UTC (rev 1179) @@ -28,7 +28,9 @@ /** Serial version. */ private static final long serialVersionUID = 1L; - /** Contents of this card. */ + /** Contents of this card. + * @serial include + */ private final String[] fieldContents = new String[6]; /** Sets a field of this card. Modified: progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java =================================================================== --- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java 2009-02-24 02:26:35 UTC (rev 1178) +++ progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfig.java 2009-02-24 02:27:09 UTC (rev 1179) @@ -27,7 +27,9 @@ /** Serial version. */ private static final long serialVersionUID = 1L; - /** Names of the fields of cards in this database. */ + /** Names of the fields of cards in this database. + * @serial include + */ private final String[] fieldNames = new String[6]; /** Creates a CardDatabaseConfig. Modified: progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java =================================================================== --- progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java 2009-02-24 02:26:35 UTC (rev 1178) +++ progs/cardlearn/trunk/src/prj/net/sf/japi/cardlearn/CardDatabaseConfigEditor.java 2009-02-24 02:27:09 UTC (rev 1179) @@ -31,13 +31,19 @@ */ public final class CardDatabaseConfigEditor extends JComponent { - /** The CardDatabaseConfig to edit. */ + /** The CardDatabaseConfig to edit. + * @serial include + */ private final CardDatabaseConfig config; - /** The labels for the fields. */ + /** The labels for the fields. + * @serial include + */ private final JLabel[] labels = new JLabel[6]; - /** The textfields for the fields. */ + /** The textfields for the fields. + * @serial include + */ private final JTextField[] fields = new JTextField[6]; /** Creates a CardDatabaseConfigEditor. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:42
|
Revision: 1172 http://japi.svn.sourceforge.net/japi/?rev=1172&view=rev Author: christianhujer Date: 2009-02-24 02:24:26 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- libs/swing-recent/trunk/src/prj/net/sf/japi/swing/recent/package.html Modified: libs/swing-recent/trunk/src/prj/net/sf/japi/swing/recent/package.html =================================================================== --- libs/swing-recent/trunk/src/prj/net/sf/japi/swing/recent/package.html 2009-02-24 02:24:07 UTC (rev 1171) +++ libs/swing-recent/trunk/src/prj/net/sf/japi/swing/recent/package.html 2009-02-24 02:24:26 UTC (rev 1172) @@ -34,12 +34,12 @@ <li> Alternatively, <ul> - <li>Create and instanciate your desired implementation of {@link net.sf.japi.progs.jeduca.swing.recent.RecentURLs}.</li> - <li>Get an instance using {@link net.sf.japi.progs.jeduca.swing.recent.PrefsRecentURLs#PrefsRecentURLs(Class)}</li> + <li>Create and instanciate your desired implementation of {@link net.sf.japi.swing.recent.RecentURLs}.</li> + <li>Get an instance using {@link net.sf.japi.swing.recent.PrefsRecentURLs#PrefsRecentURLs(Class)}</li> </ul> </li> - <li>Somewhere implement {@link net.sf.japi.progs.jeduca.swing.io.CanLoad} so a recently loaded document can be activated.</li> - <li>Create a Menu for recently opened files (URLs) using {@link net.sf.japi.progs.jeduca.swing.recent.RecentURLsMenu#RecentURLsMenu(net.sf.japi.progs.jeduca.swing.recent.RecentURLs,net.sf.japi.progs.jeduca.swing.io.CanLoad)}</li> + <li>Somewhere implement {@link net.sf.japi.swing.app.CanLoad} so a recently loaded document can be activated.</li> + <li>Create a Menu for recently opened files (URLs) using {@link net.sf.japi.swing.recent.RecentURLsMenu#RecentURLsMenu(net.sf.japi.swing.recent.RecentURLs,net.sf.japi.swing.app.CanLoad)}</li> </ul> </body> </html> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:41
|
Revision: 1176 http://japi.svn.sourceforge.net/japi/?rev=1176&view=rev Author: christianhujer Date: 2009-02-24 02:26:00 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java Modified: libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java =================================================================== --- libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java 2009-02-24 02:25:28 UTC (rev 1175) +++ libs/util/trunk/src/prj/net/sf/japi/util/LocaleComparator.java 2009-02-24 02:26:00 UTC (rev 1176) @@ -34,7 +34,9 @@ /** Serial version. */ private static final long serialVersionUID = 1L; - /** Collator for comparing the names. */ + /** Collator for comparing the names. + * @serial include + */ @NotNull private final Collator collator = Collator.getInstance(); /** Create a LocaleComparator. */ Modified: libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java =================================================================== --- libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java 2009-02-24 02:25:28 UTC (rev 1175) +++ libs/util/trunk/src/tst/test/net/sf/japi/util/Arrays2Test.java 2009-02-24 02:26:00 UTC (rev 1176) @@ -29,7 +29,8 @@ */ public class Arrays2Test { - /** Test case for {@link Arrays2#concat(byte[]...)}. */ + /** Test case for {@link Arrays2#concat(byte[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on byte[][] (javadoc) vs. byte[]... (IDEA). @Test public void testConcatByte() { final byte[] data1Orig = {1, 2, 3}; @@ -43,7 +44,8 @@ Assert.assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); } - /** Test case for {@link Arrays2#concat(short[]...)}. */ + /** Test case for {@link Arrays2#concat(short[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on short[][] (javadoc) vs. short[]... (IDEA). @Test public void testConcatShort() { final short[] data1Orig = {1, 2, 3}; @@ -57,7 +59,8 @@ Assert.assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); } - /** Test case for {@link Arrays2#concat(int[]...)}. */ + /** Test case for {@link Arrays2#concat(int[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on int[][] (javadoc) vs. int[]... (IDEA). @Test public void testConcatInt() { final int[] data1Orig = {1, 2, 3}; @@ -71,7 +74,8 @@ Assert.assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); } - /** Test case for {@link Arrays2#concat(long[]...)}. */ + /** Test case for {@link Arrays2#concat(long[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on long[][] (javadoc) vs. long[]... (IDEA). @Test public void testConcatLong() { final long[] data1Orig = {1, 2, 3}; @@ -85,7 +89,8 @@ Assert.assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); } - /** Test case for {@link Arrays2#concat(float[]...)}. */ + /** Test case for {@link Arrays2#concat(float[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on float[][] (javadoc) vs. float[]... (IDEA). @Test public void testConcatFloat() { final float[] data1Orig = {1, 2, 3}; @@ -99,7 +104,8 @@ Assert.assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); } - /** Test case for {@link Arrays2#concat(double[]...)}. */ + /** Test case for {@link Arrays2#concat(double[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on double[][] (javadoc) vs. double[]... (IDEA). @Test public void testConcatDouble() { final double[] data1Orig = {1, 2, 3}; @@ -113,7 +119,8 @@ Assert.assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); } - /** Test case for {@link Arrays2#concat(char[]...)}. */ + /** Test case for {@link Arrays2#concat(char[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on char[][] (javadoc) vs. char[]... (IDEA). @Test public void testConcatChar() { final char[] data1Orig = {1, 2, 3}; @@ -127,7 +134,8 @@ Assert.assertTrue("Concatenation must correctly concatenate", Arrays.equals(concatExpected, concatResult)); } - /** Test case for {@link Arrays2#concat(boolean[]...)}. */ + /** Test case for {@link Arrays2#concat(boolean[][])}. */ + @SuppressWarnings({"JavadocReference"}) // javadoc and IntelliJ IDEA disagree on boolean[][] (javadoc) vs. boolean[]... (IDEA). @Test public void testConcatBoolean() { final boolean[] data1Orig = {true, false, true}; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:41
|
Revision: 1173 http://japi.svn.sourceforge.net/japi/?rev=1173&view=rev Author: christianhujer Date: 2009-02-24 02:24:56 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed wrong todo format. Modified Paths: -------------- libs/swing-proxyprefs/trunk/src/prj/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java Modified: libs/swing-proxyprefs/trunk/src/prj/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java =================================================================== --- libs/swing-proxyprefs/trunk/src/prj/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java 2009-02-24 02:24:26 UTC (rev 1172) +++ libs/swing-proxyprefs/trunk/src/prj/net/sf/japi/swing/prefs/proxy/ProxyPrefs.java 2009-02-24 02:24:56 UTC (rev 1173) @@ -27,22 +27,22 @@ /** {@inheritDoc} */ public void apply() { - //TODO + // TODO:2009-02-24:christianhujer:Implement. } /** {@inheritDoc} */ public void defaults() { - //TODO + // TODO:2009-02-24:christianhujer:Implement. } /** {@inheritDoc} */ public boolean isChanged() { - return false; //TODO + return false; // TODO:2009-02-24:christianhujer:Implement. } /** {@inheritDoc} */ public void revert() { - //TODO + // TODO:2009-02-24:christianhujer:Implement. } } // class ProxyPrefs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:41
|
Revision: 1171 http://japi.svn.sourceforge.net/japi/?rev=1171&view=rev Author: christianhujer Date: 2009-02-24 02:24:07 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- libs/xml/trunk/src/tst/test/net/sf/japi/xml/NodeListIterator2Test.java Modified: libs/xml/trunk/src/tst/test/net/sf/japi/xml/NodeListIterator2Test.java =================================================================== --- libs/xml/trunk/src/tst/test/net/sf/japi/xml/NodeListIterator2Test.java 2009-02-24 02:23:51 UTC (rev 1170) +++ libs/xml/trunk/src/tst/test/net/sf/japi/xml/NodeListIterator2Test.java 2009-02-24 02:24:07 UTC (rev 1171) @@ -41,14 +41,18 @@ /** Mock NodeList. */ private NodeList mockNodeList; - /** {@inheritDoc} */ + /** Creates the testling. + * @throws Exception (unexpected). + */ @Before public void setUp() throws Exception { mockNodeList = createMockNodeList(); testling = new NodeListIterator<Node>(mockNodeList); } - /** {@inheritDoc} */ + /** Removes the testling. + * @throws Exception (unexpected). + */ @SuppressWarnings({"AssignmentToNull"}) @After public void tearDown() throws Exception { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:40
|
Revision: 1174 http://japi.svn.sourceforge.net/japi/?rev=1174&view=rev Author: christianhujer Date: 2009-02-24 02:25:19 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/SimpleNode.java Modified: libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java =================================================================== --- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java 2009-02-24 02:24:56 UTC (rev 1173) +++ libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java 2009-02-24 02:25:19 UTC (rev 1174) @@ -37,10 +37,14 @@ /** Action Builder. */ private static final ActionBuilder ACTION_BUILDER = ActionBuilderFactory.getInstance().getActionBuilder("net.sf.japi.swing.prefs.keys"); - /** The ActionKeyDisplay. */ + /** The ActionKeyDisplay. + * @serial include + */ private final ActionKeyDisplay actionKeyDisplay; - /** The table. */ + /** The table. + * @serial include + */ private final JTreeTable<KeyStrokeRootNode, AbstractSimpleNode<AbstractSimpleNode>> table; /** Create KeyStrokePrefs for a list of ActionBuilders. Modified: libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/SimpleNode.java =================================================================== --- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/SimpleNode.java 2009-02-24 02:24:56 UTC (rev 1173) +++ libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/SimpleNode.java 2009-02-24 02:25:19 UTC (rev 1174) @@ -24,7 +24,7 @@ * @param <C> type for children of this node. * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ -interface SimpleNode<C> { +public interface SimpleNode<C> { /** Gets a child with a specific index. * @param index Index of desired child This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 02:28:40
|
Revision: 1180 http://japi.svn.sourceforge.net/japi/?rev=1180&view=rev Author: christianhujer Date: 2009-02-24 02:27:52 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed javadoc issues. Modified Paths: -------------- progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java Modified: progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java =================================================================== --- progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java 2009-02-24 02:27:09 UTC (rev 1179) +++ progs/jtype/trunk/src/prj/net/sf/japi/jtype/JType.java 2009-02-24 02:27:52 UTC (rev 1180) @@ -53,9 +53,10 @@ /** The about dialog. * This field is lazy initialized in {@link #about()}. + * @serial exclude */ @SuppressWarnings({"InstanceVariableMayNotBeInitialized"}) - private AboutDialog aboutDialog; + private transient AboutDialog aboutDialog; /** Main program. * @param args Commandline arguments (currently ignered). Modified: progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java =================================================================== --- progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java 2009-02-24 02:27:09 UTC (rev 1179) +++ progs/jtype/trunk/src/prj/net/sf/japi/jtype/PerformancePane.java 2009-02-24 02:27:52 UTC (rev 1180) @@ -42,22 +42,33 @@ /** Delay after which a keystroke will be treated as new key after a pause. * This allows users to pause their excercises without having to explicitely stop the program. + * @serial include */ private final int pauseDetectionDelay = DEFAULT_PAUSE_DETECTION_DELAY; - /** The number of keys typed correctly. */ + /** The number of keys typed correctly. + * @serial include + */ private int keyTypes; - /** The number of keys typed wrongly. */ + /** The number of keys typed wrongly. + * @serial include + */ private int correctionTypes; - /** The timestamp of the previous keystroke. */ + /** The timestamp of the previous keystroke. + * @serial include + */ private long lastTime; - /** The sum of time all keystrokes took alltogether so far. */ + /** The sum of time all keystrokes took alltogether so far. + * @serial include + */ private long timeSums; - /** Reflection fields. */ + /** Reflection fields. + * @serial include + */ private final Collection<ReflectionField> reflectionFields = new ArrayList<ReflectionField>(); /** Creates a PerformancePane. */ Modified: progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java =================================================================== --- progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java 2009-02-24 02:27:09 UTC (rev 1179) +++ progs/jtype/trunk/src/prj/net/sf/japi/jtype/ReflectionField.java 2009-02-24 02:27:52 UTC (rev 1180) @@ -32,16 +32,24 @@ */ public class ReflectionField extends JComponent { - /** The label to update. */ + /** The label to update. + * @serial include + */ private final JLabel label; - /** The format to create the label text. */ + /** The format to create the label text. + * @serial include + */ private final String format; - /** The target object from which the field value will be read. */ + /** The target object from which the field value will be read. + * @serial include + */ private final Object target; - /** The method used to retrieve the value of the property. */ + /** The method used to retrieve the value of the property. + * @serial include + */ private final Method getter; /** Creates a ReflactionField. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 01:27:54
|
Revision: 1166 http://japi.svn.sourceforge.net/japi/?rev=1166&view=rev Author: christianhujer Date: 2009-02-24 01:27:53 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Added missing junit to privateDoc classpath. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-24 01:24:48 UTC (rev 1165) +++ common/trunk/commonBuild.xml 2009-02-24 01:27:53 UTC (rev 1166) @@ -401,6 +401,7 @@ overview = "src/overview.html" --> <classpath refid="class.path" /> + <classpath location="${commonPath}/antlib.auto/junit.jar" /> <link offline="true" href="http://java.sun.com/javase/6/docs/api/" packagelistLoc="${java.home}/../docs/api/" /> <packageset dir="src/doc" defaultexcludes="yes" /> <packageset dir="src/prj" defaultexcludes="yes" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-24 01:24:50
|
Revision: 1165 http://japi.svn.sourceforge.net/japi/?rev=1165&view=rev Author: christianhujer Date: 2009-02-24 01:24:48 +0000 (Tue, 24 Feb 2009) Log Message: ----------- Fixed bogus taglets lib for javadoc in target privateDoc. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-23 23:49:06 UTC (rev 1164) +++ common/trunk/commonBuild.xml 2009-02-24 01:24:48 UTC (rev 1165) @@ -405,16 +405,16 @@ <packageset dir="src/doc" defaultexcludes="yes" /> <packageset dir="src/prj" defaultexcludes="yes" /> <packageset dir="src/tst" defaultexcludes="yes" /> - <taglet name="net.sf.japi.taglets.FixmeTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.HistoryTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.InvariantTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.NoteTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.PostconditionTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.PreconditionTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.ReturnValueTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.TodoTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.WarningTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> - <taglet name="net.sf.japi.taglets.XxxTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" /> + <taglet name="net.sf.japi.taglets.FixmeTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.HistoryTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.InvariantTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.NoteTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.PostconditionTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.PreconditionTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.ReturnValueTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.TodoTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.WarningTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> + <taglet name="net.sf.japi.taglets.XxxTaglet" path="${commonPath}/antlib.auto/japi-lib-taglets.jar" /> </javadoc> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-23 23:49:12
|
Revision: 1164 http://japi.svn.sourceforge.net/japi/?rev=1164&view=rev Author: christianhujer Date: 2009-02-23 23:49:06 +0000 (Mon, 23 Feb 2009) Log Message: ----------- Improved linking, removed bogus and unused source path. Modified Paths: -------------- common/trunk/commonBuild.xml Modified: common/trunk/commonBuild.xml =================================================================== --- common/trunk/commonBuild.xml 2009-02-23 23:40:48 UTC (rev 1163) +++ common/trunk/commonBuild.xml 2009-02-23 23:49:06 UTC (rev 1164) @@ -51,6 +51,9 @@ --> <property file="developer.properties" /> +<!-- If the developer did not specify a location for the package information of the java api documentation, try this one. --> +<property name="user.javadoc.link" value="${java.home}/../docs/api/" /> + <!-- The file module.properties must exist in each module that is built using common. --> <property file="module.properties" prefix="module" /> @@ -346,16 +349,12 @@ encoding = "utf-8" source = "1.5" linksource = "yes" - link = "${user.javadoc.link}" > <!-- overview = "src/overview.html" --> <classpath refid="class.path" /> - <sourcepath> - <pathelement path="${user.javadoc.javasrc}" /> - <!--pathelement path="src" /--><!-- This is handled via packageset. --> - </sourcepath> + <link offline="true" href="http://java.sun.com/javase/6/docs/api/" packagelistLoc="${java.home}/../docs/api/" /> <packageset dir="src/prj" defaultexcludes="yes" @@ -397,15 +396,12 @@ encoding = "utf-8" source = "1.5" linksource = "yes" - link = "${user.javadoc.link}" > <!-- overview = "src/overview.html" --> <classpath refid="class.path" /> - <sourcepath> - <pathelement path="${user.javadoc.javasrc}" /> - </sourcepath> + <link offline="true" href="http://java.sun.com/javase/6/docs/api/" packagelistLoc="${java.home}/../docs/api/" /> <packageset dir="src/doc" defaultexcludes="yes" /> <packageset dir="src/prj" defaultexcludes="yes" /> <packageset dir="src/tst" defaultexcludes="yes" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-23 23:40:51
|
Revision: 1163 http://japi.svn.sourceforge.net/japi/?rev=1163&view=rev Author: christianhujer Date: 2009-02-23 23:40:48 +0000 (Mon, 23 Feb 2009) Log Message: ----------- Added missing build.xml Added Paths: ----------- games/jmines/trunk/build.xml Added: games/jmines/trunk/build.xml =================================================================== --- games/jmines/trunk/build.xml (rev 0) +++ games/jmines/trunk/build.xml 2009-02-23 23:40:48 UTC (rev 1163) @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + ~ 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/>. + --> +<!DOCTYPE project [ + <!ENTITY commonBuild SYSTEM "common/commonBuild.xml"> +]> +<project name="JMines" default="compile"> + + &commonBuild; + + <target name="getlibs"> + <get src="http://downloads.sourceforge.net/japi/japi-lib-swing-action-0.1.0.jar" dest="lib/japi-lib-swing-action.jar" /> + </target> + +</project> Property changes on: games/jmines/trunk/build.xml ___________________________________________________________________ Added: svn:mime-type + text/xml Added: svn:eol-style + LF This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-23 22:56:05
|
Revision: 1162 http://japi.svn.sourceforge.net/japi/?rev=1162&view=rev Author: christianhujer Date: 2009-02-23 22:00:08 +0000 (Mon, 23 Feb 2009) Log Message: ----------- Fixed bogus todo comments. Modified Paths: -------------- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionKeyDisplay.java libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionMapNode.java libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokeRootNode.java Modified: libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionKeyDisplay.java =================================================================== --- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionKeyDisplay.java 2009-02-23 21:59:05 UTC (rev 1161) +++ libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionKeyDisplay.java 2009-02-23 22:00:08 UTC (rev 1162) @@ -142,7 +142,7 @@ /** {@inheritDoc} */ public void actionPerformed(final ActionEvent e) { - //TODO + // TODO:2009-02-23:christianhujer:Implement. } /** Set the Action to be displayed. Modified: libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionMapNode.java =================================================================== --- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionMapNode.java 2009-02-23 21:59:05 UTC (rev 1161) +++ libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/ActionMapNode.java 2009-02-23 22:00:08 UTC (rev 1162) @@ -63,7 +63,7 @@ /** {@inheritDoc} */ public Object getValueAt(final int column) { - return null; //TODO + return null; // TODO:2009-02-23:christianhujer:Implement. } } // class ActionMapNode Modified: libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java =================================================================== --- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java 2009-02-23 21:59:05 UTC (rev 1161) +++ libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokePrefs.java 2009-02-23 22:00:08 UTC (rev 1162) @@ -30,7 +30,6 @@ import net.sf.japi.swing.treetable.JTreeTable; /** Prefs implementation for configuring keystrokes of one or more {@link ActionBuilder ActionBuilders}. - * TODO * @author <a href="mailto:ch...@ri...">Christian Hujer</a> */ public class KeyStrokePrefs extends AbstractPrefs implements ListSelectionListener { @@ -76,22 +75,22 @@ /** {@inheritDoc} */ public boolean isChanged() { - return false; //TODO + return false; // TODO:2009-02-23:christianhujer:Implement. } /** {@inheritDoc} */ public void defaults() { - //TODO + // TODO:2009-02-23:christianhujer:Implement. } /** {@inheritDoc} */ public void revert() { - //TODO + // TODO:2009-02-23:christianhujer:Implement. } /** {@inheritDoc} */ public void apply() { - //TODO + // TODO:2009-02-23:christianhujer:Implement. } /** {@inheritDoc} */ Modified: libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokeRootNode.java =================================================================== --- libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokeRootNode.java 2009-02-23 21:59:05 UTC (rev 1161) +++ libs/swing-keyprefs/trunk/src/prj/net/sf/japi/swing/prefs/keys/KeyStrokeRootNode.java 2009-02-23 22:00:08 UTC (rev 1162) @@ -49,7 +49,7 @@ /** {@inheritDoc} */ public Object getValueAt(final int column) { - return null; //TODO + return null; // TODO:2009-02-23:christianhujer:Implementation. } } // class KeyStrokeRootNode This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <chr...@us...> - 2009-02-23 22:55:48
|
Revision: 1161 http://japi.svn.sourceforge.net/japi/?rev=1161&view=rev Author: christianhujer Date: 2009-02-23 21:59:05 +0000 (Mon, 23 Feb 2009) Log Message: ----------- Fixed bug in illegal todo comment regex. Modified Paths: -------------- common/trunk/sun_checks.xml Modified: common/trunk/sun_checks.xml =================================================================== --- common/trunk/sun_checks.xml 2009-02-23 21:15:26 UTC (rev 1160) +++ common/trunk/sun_checks.xml 2009-02-23 21:59:05 UTC (rev 1161) @@ -214,19 +214,19 @@ <property name="message" value="Line has trailing spaces."/> </module> <module name="GenericIllegalRegexp"> - <property name="format" value="([^"]|^)//\s+TODO(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> + <property name="format" value="([^"]|^)//\s*TODO(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> <property name="message" value="Wrong format of TODO comment."/> </module> <module name="GenericIllegalRegexp"> - <property name="format" value="([^"]|^)//\s+FIXME(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> + <property name="format" value="([^"]|^)//\s*FIXME(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> <property name="message" value="Wrong format of FIXME comment."/> </module> <module name="GenericIllegalRegexp"> - <property name="format" value="([^"]|^)//\s+XXX(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> + <property name="format" value="([^"]|^)//\s*XXX(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> <property name="message" value="Wrong format of XXX comment."/> </module> <module name="GenericIllegalRegexp"> - <property name="format" value="([^"]|^)//\s+Review(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> + <property name="format" value="([^"]|^)//\s*Review(?!:\d{4}-\d{2}-\d{2}:\w+:\S.*$)"/> <property name="message" value="Wrong format of Review comment."/> </module> <!-- Disabled because we use different means of filtering out such comments. --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |