mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
Add Rustici trunk branch, synched to rev r13498
This commit is contained in:
parent
b8dffaab5b
commit
ff8ef87f54
@ -2,7 +2,6 @@
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry exported="true" kind="lib" path="lib/commons-lang-2.4.jar"/>
|
||||
<classpathentry exported="true" kind="lib" path="lib/commons-codec-1.4.jar"/>
|
||||
<classpathentry kind="lib" path="lib/commons-lang-2.4.jar"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
@ -16,5 +16,10 @@
|
||||
<Name>Name</Name>
|
||||
<Get>${this}.getName()</Get>
|
||||
</Property>
|
||||
<Property>
|
||||
<Type>System.Boolean</Type>
|
||||
<Name>IsDirectory</Name>
|
||||
<Get>${this}.isDirectory()</Get>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Class>
|
@ -20,17 +20,6 @@
|
||||
<Name>TrueString</Name>
|
||||
<Get>"True"</Get>
|
||||
</Property>
|
||||
<!-- C# 2.0 nullable value types -->
|
||||
<Property>
|
||||
<Type>System.Boolean</Type>
|
||||
<Name>HasValue</Name>
|
||||
<Get>${this} != null</Get>
|
||||
</Property>
|
||||
<Property>
|
||||
<Type>System.Boolean</Type>
|
||||
<Name>Value</Name>
|
||||
<Get>${this}</Get>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Methods>
|
||||
<Method>
|
||||
|
@ -50,17 +50,6 @@
|
||||
<Java>Character.isLetter(${ch})</Java>
|
||||
</Method>
|
||||
<Method>
|
||||
<Return>System.Boolean</Return>
|
||||
<Name>IsLetterOrDigit</Name>
|
||||
<Params>
|
||||
<Param>
|
||||
<Type>System.Char</Type>
|
||||
<Name>ch</Name>
|
||||
</Param>
|
||||
</Params>
|
||||
<Java>Character.isLetterOrDigit(${ch})</Java>
|
||||
</Method>
|
||||
<Method>
|
||||
<Return>System.Boolean</Return>
|
||||
<Name>IsUpper</Name>
|
||||
<Params>
|
||||
|
@ -14,34 +14,6 @@
|
||||
</Property>
|
||||
</Properties>
|
||||
<Methods>
|
||||
<Method>
|
||||
<Return>System.Byte[]</Return>
|
||||
<Name>FromBase64String</Name>
|
||||
<Params>
|
||||
<Param>
|
||||
<Type>System.String</Type>
|
||||
<Name>s</Name>
|
||||
</Param>
|
||||
</Params>
|
||||
<Imports>
|
||||
<Import>org.apache.commons.codec.binary.Base64</Import>
|
||||
</Imports>
|
||||
<Java>Base64.decodeBase64(${s})</Java>
|
||||
</Method>
|
||||
<Method>
|
||||
<Return>System.String</Return>
|
||||
<Name>ToBase64String</Name>
|
||||
<Params>
|
||||
<Param>
|
||||
<Type>System.Byte[]</Type>
|
||||
<Name>inArray</Name>
|
||||
</Param>
|
||||
</Params>
|
||||
<Imports>
|
||||
<Import>org.apache.commons.codec.binary.Base64</Import>
|
||||
</Imports>
|
||||
<Java>Base64.encodeBase64String(${inArray})</Java>
|
||||
</Method>
|
||||
<Method>
|
||||
<Return>System.Boolean</Return>
|
||||
<Name>ToBoolean</Name>
|
||||
|
@ -67,10 +67,9 @@
|
||||
</Params>
|
||||
<Imports>
|
||||
<Import>RusticiSoftware.System.IO.StreamReader</Import>
|
||||
<Import>RusticiSoftware.System.Text.EncodingSupport</Import>
|
||||
<Import>java.io.*</Import>
|
||||
</Imports>
|
||||
<Java>new BufferedReader(StreamReader.make(new BufferedInputStream(${stream}), new EncodingSupport("UTF-8")))</Java>
|
||||
<Java>new BufferedReader(StreamReader.make(new BufferedInputStream(${stream}), "UTF-8"))</Java>
|
||||
</Constructor>
|
||||
</Constructors>
|
||||
<Methods>
|
||||
|
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Class xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="file://C:/Documents%20and%20Settings/kevin.glynn/My%20Documents/CS2JLibrary/Translation.xsd"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<Name>System.Net.Mail.MailAddressCollection</Name>
|
||||
<Properties>
|
||||
<Property>
|
||||
<!-- tried inheriting from ICollection and moving this definition there, didn't work so just
|
||||
copying this from IDictionary -->
|
||||
<Type>System.Int32</Type>
|
||||
<Name>Count</Name>
|
||||
<Get>${this}.size()</Get>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Class>
|
@ -20,20 +20,6 @@
|
||||
</Imports>
|
||||
<Java>NumberFormat.getInstance(${provider}).format(${this})</Java>
|
||||
</Method>
|
||||
<Method>
|
||||
<Return>System.String</Return>
|
||||
<Name>ToString</Name>
|
||||
<Params>
|
||||
<Param>
|
||||
<Type>System.String</Type>
|
||||
<Name>format</Name>
|
||||
</Param>
|
||||
</Params>
|
||||
<Imports>
|
||||
<Import>RusticiSoftware.System.NumberSupport</Import>
|
||||
</Imports>
|
||||
<Java>NumberSupport.format(${this}, ${format})</Java>
|
||||
</Method>
|
||||
</Methods>
|
||||
<Casts>
|
||||
</Casts>
|
||||
|
@ -1,35 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Class xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="file://C:/Documents%20and%20Settings/kevin.glynn/My%20Documents/CS2JLibrary/Translation.xsd"
|
||||
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<Name>System.Security.Cryptography.X509Certificates.X509Certificate2</Name>
|
||||
<Inherits>
|
||||
<Type>System.Security.Cryptography.X509Certificates.X509Certificate</Type>
|
||||
</Inherits>
|
||||
<Java>X509Certificate</Java>
|
||||
<Imports>
|
||||
<Import>java.security.cert.X509Certificate</Import>
|
||||
</Imports>
|
||||
<Constructors>
|
||||
<!-- <Constructor>-->
|
||||
<!-- <Params>-->
|
||||
<!-- <Param>-->
|
||||
<!-- <Name>filename</Name>-->
|
||||
<!-- <Type>System.String</Type>-->
|
||||
<!-- </Param>-->
|
||||
<!-- <Param>-->
|
||||
<!-- <Name>password</Name>-->
|
||||
<!-- <Type>System.String</Type>-->
|
||||
<!-- </Param>-->
|
||||
<!-- </Params>-->
|
||||
<!-- <Imports>-->
|
||||
<!-- <Import>java.security.cert.X509Certificate</Import>-->
|
||||
<!-- </Imports>-->
|
||||
<!-- <Java>new GregorianCalendar(${year}, ${month}-1, ${day}).getTime()</Java>-->
|
||||
<!-- </Constructor>-->
|
||||
</Constructors>
|
||||
<Properties>
|
||||
</Properties>
|
||||
<Methods>
|
||||
</Methods>
|
||||
</Class>
|
@ -14,19 +14,16 @@
|
||||
<Constructors>
|
||||
<Constructor>
|
||||
<Params>
|
||||
<Param>
|
||||
<Name>char</Name>
|
||||
<Type>System.Char</Type>
|
||||
</Param>
|
||||
<Param>
|
||||
<Name>length</Name>
|
||||
<Type>System.Int32</Type>
|
||||
</Param>
|
||||
<Param>
|
||||
<Name>char</Name>
|
||||
<Type>System.Char</Type>
|
||||
</Param>
|
||||
</Params>
|
||||
<Imports>
|
||||
<Import>RusticiSoftware.System.StringSupport</Import>
|
||||
</Imports>
|
||||
<Java>StringSupport.mkString(${char}, ${length})</Java>
|
||||
<Java>new String(${length}, ${char}) /* FIX ME */</Java>
|
||||
</Constructor>
|
||||
<Constructor>
|
||||
<Params>
|
||||
|
@ -9,23 +9,9 @@
|
||||
<Property>
|
||||
<Name>UTF8</Name>
|
||||
<Type>System.Text.Encoding</Type>
|
||||
<Get>(new EncodingSupport("UTF-8"))</Get>
|
||||
<Imports>
|
||||
<Import>RusticiSoftware.System.Text.EncodingSupport</Import>
|
||||
</Imports>
|
||||
<Get>"UTF-8"</Get>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Methods>
|
||||
<Method>
|
||||
<Return>System.Byte[]</Return>
|
||||
<Name>GetBytes</Name>
|
||||
<Params>
|
||||
<Param>
|
||||
<Type>System.String</Type>
|
||||
<Name>s</Name>
|
||||
</Param>
|
||||
</Params>
|
||||
<Java>${this}.getBytes(${s})</Java>
|
||||
</Method>
|
||||
</Methods>
|
||||
</Class>
|
||||
|
@ -24,16 +24,7 @@
|
||||
<Name>Length</Name>
|
||||
<Type>System.Int32</Type>
|
||||
<Get>${this}.length()</Get>
|
||||
<Set>StringBuilderSupport.setLength(${this}, ${value})</Set>
|
||||
<Imports>
|
||||
<Import>RusticiSoftware.System.Text.StringBuilderSupport</Import>
|
||||
</Imports>
|
||||
</Property>
|
||||
<Property>
|
||||
<Name>Capacity</Name>
|
||||
<Type>System.Int32</Type>
|
||||
<Get>${this}.capacity()</Get>
|
||||
<Set>${this}.ensureCapacity(${value})</Set>
|
||||
<Set>${this}.setlength(${value})</Set>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Methods>
|
||||
@ -59,20 +50,6 @@
|
||||
</Params>
|
||||
<Java>${this}.append((${arg}) + System.getProperty("line.separator"))</Java>
|
||||
</Method>
|
||||
<Method>
|
||||
<Return>System.Int32</Return>
|
||||
<Name>EnsureCapacity</Name>
|
||||
<Params>
|
||||
<Param>
|
||||
<Name>arg</Name>
|
||||
<Type>System.Int32</Type>
|
||||
</Param>
|
||||
</Params>
|
||||
<Imports>
|
||||
<Import>RusticiSoftware.System.Text.StringBuilderSupport</Import>
|
||||
</Imports>
|
||||
<Java>StringBuilderSupport.ensureCapacity(${this}, ${arg})</Java>
|
||||
</Method>
|
||||
<Method>
|
||||
<Return>System.Text.StringBuilder</Return>
|
||||
<Name>Insert</Name>
|
||||
|
@ -6,4 +6,4 @@ classes.dir=${build.dir}/classes
|
||||
jar.dir=${build.dir}/jar
|
||||
zip.dir=${build.dir}/zip
|
||||
java.target.vm=1.5
|
||||
|
||||
src.zip=${zip.dir}/cs2jlibrary-src.zip
|
@ -50,10 +50,6 @@
|
||||
|
||||
<target name="src" description="Make a source distribution">
|
||||
<mkdir dir="${zip.dir}" />
|
||||
<exec executable="git" outputproperty="build.version">
|
||||
<arg line="describe"/>
|
||||
</exec>
|
||||
<property name="src.zip" value="${zip.dir}/cs2jlibrary-src-${build.version}.zip"/>
|
||||
<zip destfile="${src.zip}">
|
||||
<fileset dir="${basedir}">
|
||||
<include name="src/**/*" />
|
||||
|
@ -1,202 +1,202 @@
|
||||
|
||||
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.
|
||||
|
||||
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.
|
@ -1,14 +0,0 @@
|
||||
Apache Commons Codec
|
||||
Copyright 2002-2009 The Apache Software Foundation
|
||||
|
||||
This product includes software developed by
|
||||
The Apache Software Foundation (http://www.apache.org/).
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
src/test/org/apache/commons/codec/language/DoubleMetaphoneTest.java contains
|
||||
test data from http://aspell.sourceforge.net/test/batch0.tab.
|
||||
|
||||
Copyright (C) 2002 Kevin Atkinson (kevina@gnu.org). Verbatim copying
|
||||
and distribution of this entire article is permitted in any medium,
|
||||
provided this notice is preserved.
|
||||
--------------------------------------------------------------------------------
|
@ -1,5 +0,0 @@
|
||||
3rd Party Software License
|
||||
|
||||
commons-lang, commons-codec Apache 2.0
|
||||
|
||||
|
Binary file not shown.
@ -24,10 +24,11 @@ import java.lang.annotation.Annotation;
|
||||
import java.lang.reflect.Field;
|
||||
import java.util.ArrayList;
|
||||
|
||||
import javax.swing.text.html.HTMLDocument.HTMLReader.IsindexAction;
|
||||
|
||||
public class FieldSupport {
|
||||
|
||||
public static Annotation[] getAnnotations(Field f, Class<?> filterBy, boolean inherits)
|
||||
public static Annotation[] getAnnotations(Field f, Class filterBy, boolean inherits)
|
||||
{
|
||||
ArrayList<Annotation> filteredAnns = new ArrayList<Annotation>();
|
||||
|
||||
|
@ -31,14 +31,14 @@ public class LocaleSupport {
|
||||
// singleton
|
||||
private LocaleSupport() {}
|
||||
|
||||
private static ThreadLocal<Locale> threadLocal = new InheritableThreadLocal<Locale>();
|
||||
private static ThreadLocal threadLocal = new InheritableThreadLocal();
|
||||
|
||||
public static void setCurrentLocale(Locale locale) {
|
||||
threadLocal.set(locale);
|
||||
}
|
||||
|
||||
public static Locale getCurrentLocale() {
|
||||
Locale locale = threadLocal.get();
|
||||
Locale locale = (Locale) threadLocal.get();
|
||||
|
||||
if (locale == null) {
|
||||
return Locale.getDefault();
|
||||
|
@ -1,28 +1,28 @@
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
package RusticiSoftware.System;
|
||||
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Calendar;
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
import java.util.Locale;
|
||||
|
||||
@ -125,14 +125,14 @@ public class DateTimeSupport {
|
||||
}
|
||||
|
||||
throw new ParseException("Could not parse " + s + " as a date", 0);
|
||||
}
|
||||
|
||||
public static Date add(Date base,int field, int amount)
|
||||
{
|
||||
Calendar cal = Calendar.getInstance();
|
||||
cal.setTime(base);
|
||||
cal.add(field, amount);
|
||||
return cal.getTime();
|
||||
}
|
||||
|
||||
public static Date add(Date base,int field, int amount)
|
||||
{
|
||||
Calendar cal = Calendar.getInstance();
|
||||
cal.setTime(base);
|
||||
cal.add(field, amount);
|
||||
return cal.getTime();
|
||||
}
|
||||
|
||||
}
|
@ -33,7 +33,7 @@ public class DoubleSupport {
|
||||
|
||||
String formattedValue = "";
|
||||
|
||||
if (format.toLowerCase().indexOf("g") == 0 && format.length() < 3) {
|
||||
if ((format.toLowerCase().indexOf("g") == 0 || format.toLowerCase().indexOf("n") == 0) && format.length() < 3) {
|
||||
|
||||
if (format.length() == 2) {
|
||||
String lengthStr = format.substring(1);
|
||||
|
@ -23,12 +23,12 @@ package RusticiSoftware.System;
|
||||
public class EnumSupport {
|
||||
|
||||
// returns true iff v is a valid ordinal position of a enum in e
|
||||
public static boolean isDefined(Class<?> e, int v)
|
||||
public static boolean isDefined(Class e, int v)
|
||||
{
|
||||
return (v >= 0 && v < e.getEnumConstants().length);
|
||||
}
|
||||
|
||||
public static String toString(Enum<?> e, String m)
|
||||
public static String toString(Enum e, String m)
|
||||
{
|
||||
if ("D".equals(m))
|
||||
{
|
||||
|
@ -121,7 +121,7 @@ public class DirectorySupport {
|
||||
// In .Net Directory.GetFiles, if the searchpattern contains directory path separators
|
||||
// then it will search subdirs.
|
||||
|
||||
ArrayList<String> allMatches = new ArrayList<String>();
|
||||
ArrayList allMatches = new ArrayList();
|
||||
|
||||
// we split on both / and \ characters
|
||||
String[] patternComponents = searchpattern.split("[/\\\\]",2);
|
||||
@ -145,7 +145,7 @@ public class DirectorySupport {
|
||||
}
|
||||
}
|
||||
|
||||
return allMatches.toArray(new String[allMatches.size()]);
|
||||
return (String[])allMatches.toArray(new String[allMatches.size()]);
|
||||
|
||||
}
|
||||
|
||||
@ -177,7 +177,7 @@ public class DirectorySupport {
|
||||
for (int i=0; i<children.length; i++) {
|
||||
File child = new File(dp, children[i]);
|
||||
if (child.isDirectory())
|
||||
DirectorySupport.delete(dp.getPath(), true);
|
||||
DirectorySupport.delete(child.getPath(), true);
|
||||
else
|
||||
child.delete();
|
||||
}
|
||||
|
@ -23,8 +23,6 @@ package RusticiSoftware.System.IO;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
|
||||
import RusticiSoftware.System.Text.EncodingSupport;
|
||||
|
||||
public class StreamReader {
|
||||
|
||||
@ -93,13 +91,13 @@ public class StreamReader {
|
||||
return retISR;
|
||||
}
|
||||
|
||||
public static InputStreamReader make(InputStream is, EncodingSupport cs) throws IOException
|
||||
public static InputStreamReader make(InputStream is, String cs) throws IOException
|
||||
{
|
||||
String enc = getEncoding(is);
|
||||
if (enc != null)
|
||||
return new InputStreamReader(is, enc);
|
||||
else
|
||||
return new InputStreamReader(is, cs.getString());
|
||||
return new InputStreamReader(is, cs);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,85 +0,0 @@
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
package RusticiSoftware.System;
|
||||
|
||||
public class NumberSupport {
|
||||
|
||||
|
||||
// public static float round(float num, int places) {
|
||||
// long factor = (long)Math.pow(10,places);
|
||||
// return Math.round(num * factor) / factor;
|
||||
// }
|
||||
|
||||
/**
|
||||
* Round a double value to a specified number of decimal
|
||||
* places.
|
||||
*
|
||||
* @param val the value to be rounded.
|
||||
* @param places the number of decimal places to round to.
|
||||
* @return val rounded to places decimal places.
|
||||
*/
|
||||
public static double round(double val, int places) {
|
||||
long factor = (long)Math.pow(10,places);
|
||||
|
||||
// Shift the decimal the correct number of places
|
||||
// to the right.
|
||||
val = val * factor;
|
||||
|
||||
// Round to the nearest integer.
|
||||
long tmp = Math.round(val);
|
||||
|
||||
// Shift the decimal the correct number of places
|
||||
// back to the left.
|
||||
return (double)tmp / factor;
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a number
|
||||
*
|
||||
* @param n the value to be formatted.
|
||||
* @param format a C# standard numeric format string.
|
||||
* @return n formatted according to C# format string.
|
||||
* @throws NotImplementedException
|
||||
*/
|
||||
public static String format(Number n, String format) throws NotImplementedException {
|
||||
String fStr = null;
|
||||
switch (format.charAt(0)){
|
||||
case 'X':
|
||||
case 'x':
|
||||
fStr = String.format("%1$0" + format.substring(1) + format.charAt(0), n);
|
||||
break;
|
||||
default:
|
||||
throw new NotImplementedException("No implementation for " + format + " format string");
|
||||
}
|
||||
return fStr;
|
||||
}
|
||||
|
||||
|
||||
public static void main(String args[]) throws NotImplementedException {
|
||||
double f = 10.123456789d;
|
||||
System.out.println(f + " turns into " + round(f,3));
|
||||
for (int i = 0; i <= 255; i++) {
|
||||
byte b = (byte)i;
|
||||
System.out.println(b + " turns into " + format(b,"X2"));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -235,9 +235,9 @@ public class StringSupport {
|
||||
if (str.endsWith(c1+""))
|
||||
{
|
||||
// Add empty string for .Net
|
||||
ArrayList<String> ret_al = new ArrayList<String>(Arrays.asList(rets));
|
||||
ArrayList ret_al = new ArrayList(Arrays.asList(rets));
|
||||
ret_al.add("");
|
||||
rets = ret_al.toArray(new String [ret_al.size()]);
|
||||
rets = (String[])ret_al.toArray(new String [ret_al.size()]);
|
||||
}
|
||||
return rets;
|
||||
}
|
||||
@ -248,9 +248,9 @@ public class StringSupport {
|
||||
if (str.endsWith(c1+"") || str.endsWith(c2+""))
|
||||
{
|
||||
// Add empty string for .Net
|
||||
ArrayList<String> ret_al = new ArrayList<String>(Arrays.asList(rets));
|
||||
ArrayList ret_al = new ArrayList(Arrays.asList(rets));
|
||||
ret_al.add("");
|
||||
rets = ret_al.toArray(new String [ret_al.size()]);
|
||||
rets = (String[])ret_al.toArray(new String [ret_al.size()]);
|
||||
}
|
||||
return rets;
|
||||
}
|
||||
@ -265,16 +265,16 @@ public class StringSupport {
|
||||
if (options != StringSplitOptions.RemoveEmptyEntries && str.endsWith(c+""))
|
||||
{
|
||||
// Add empty string for .Net
|
||||
ArrayList<String> ret_al = new ArrayList<String>(Arrays.asList(rets));
|
||||
ArrayList ret_al = new ArrayList(Arrays.asList(rets));
|
||||
ret_al.add("");
|
||||
rets = ret_al.toArray(new String [ret_al.size()]);
|
||||
rets = (String[])ret_al.toArray(new String [ret_al.size()]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (options == StringSplitOptions.RemoveEmptyEntries)
|
||||
{
|
||||
ArrayList<String> ret_al = new ArrayList<String>();
|
||||
ArrayList ret_al = new ArrayList();
|
||||
for (String p : rets)
|
||||
{
|
||||
if (!p.equals(""))
|
||||
@ -282,7 +282,7 @@ public class StringSupport {
|
||||
ret_al.add(p);
|
||||
}
|
||||
}
|
||||
rets = ret_al.toArray(new String [ret_al.size()]);
|
||||
rets = (String[])ret_al.toArray(new String [ret_al.size()]);
|
||||
}
|
||||
|
||||
return rets;
|
||||
@ -297,16 +297,16 @@ public class StringSupport {
|
||||
if (options != StringSplitOptions.RemoveEmptyEntries && str.endsWith(s))
|
||||
{
|
||||
// Add empty string for .Net
|
||||
ArrayList<String> ret_al = new ArrayList<String>(Arrays.asList(rets));
|
||||
ArrayList ret_al = new ArrayList(Arrays.asList(rets));
|
||||
ret_al.add("");
|
||||
rets = ret_al.toArray(new String [ret_al.size()]);
|
||||
rets = (String[])ret_al.toArray(new String [ret_al.size()]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (options == StringSplitOptions.RemoveEmptyEntries)
|
||||
{
|
||||
ArrayList<String> ret_al = new ArrayList<String>();
|
||||
ArrayList ret_al = new ArrayList();
|
||||
for (String p : rets)
|
||||
{
|
||||
if (!p.equals(""))
|
||||
@ -314,7 +314,7 @@ public class StringSupport {
|
||||
ret_al.add(p);
|
||||
}
|
||||
}
|
||||
rets = ret_al.toArray(new String [ret_al.size()]);
|
||||
rets = (String[])ret_al.toArray(new String [ret_al.size()]);
|
||||
}
|
||||
|
||||
return rets;
|
||||
@ -327,6 +327,19 @@ public class StringSupport {
|
||||
|
||||
public static final boolean IsNullOrEmpty(String str){
|
||||
return isNullOrEmpty(str);
|
||||
}
|
||||
|
||||
public static final boolean IsEmptyOrBlank(String str){
|
||||
// Locate first non-trimmable index
|
||||
int firstIdx = 0;
|
||||
while (firstIdx < str.length())
|
||||
{
|
||||
if (isIn(str.charAt(firstIdx),wschars))
|
||||
firstIdx++;
|
||||
else
|
||||
break;
|
||||
}
|
||||
return firstIdx == str.length();
|
||||
}
|
||||
|
||||
public static final int lastIndexOfAny(String str, char[] anyOf)
|
||||
@ -334,19 +347,10 @@ public class StringSupport {
|
||||
int index = -1;
|
||||
for (char test : anyOf)
|
||||
{
|
||||
index = Math.max(index, str.indexOf(test));
|
||||
index = Math.max(index, str.lastIndexOf(test));
|
||||
}
|
||||
return index;
|
||||
}
|
||||
|
||||
// in C# new String('x',50)
|
||||
public static String mkString(char c, int count) {
|
||||
char[] chars = new char[count];
|
||||
for (int i = 0; i < count; i++) {
|
||||
chars[i] = c;
|
||||
}
|
||||
return new String(chars);
|
||||
}
|
||||
|
||||
public static void Testmain(String[] args)
|
||||
{
|
||||
@ -382,7 +386,5 @@ public class StringSupport {
|
||||
splitFred = Split("=fred",'=');
|
||||
System.out.println("Split(\"=fred\", '=') = [\"" + splitFred[0] + "\", \"" + splitFred[1] + "\"]");
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,19 +0,0 @@
|
||||
package RusticiSoftware.System.Text;
|
||||
|
||||
import java.io.UnsupportedEncodingException;
|
||||
|
||||
public class EncodingSupport {
|
||||
|
||||
private String coding = "utf-8";
|
||||
public EncodingSupport(String coding) {
|
||||
this.coding = coding;
|
||||
}
|
||||
|
||||
public byte[] getBytes(String input) throws UnsupportedEncodingException {
|
||||
return input.getBytes(coding);
|
||||
}
|
||||
|
||||
public String getString() {
|
||||
return coding;
|
||||
}
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package RusticiSoftware.System.Text;
|
||||
|
||||
public class StringBuilderSupport {
|
||||
|
||||
// In C# ensureCapacity returns the new capacity
|
||||
public static int ensureCapacity(StringBuilder sb, int capacity) {
|
||||
sb.ensureCapacity(capacity);
|
||||
return sb.capacity();
|
||||
}
|
||||
// In C# setLength pads with spaces
|
||||
public static void setLength(StringBuilder sb, int newLen) {
|
||||
if (sb.length() >= newLen) {
|
||||
sb.setLength(newLen);
|
||||
}
|
||||
sb.append(String.format("%1$-" + (newLen - sb.length()) + "s", ""));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
StringBuilder sb = new StringBuilder("hello");
|
||||
System.out.println("**" + sb + "**");
|
||||
StringBuilderSupport.setLength(sb,7);
|
||||
System.out.println("**" + sb + "**");
|
||||
}
|
||||
}
|
@ -1,23 +1,23 @@
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
package RusticiSoftware.System.Xml;
|
||||
|
||||
import javax.xml.parsers.*;
|
||||
@ -36,7 +36,7 @@ import java.io.StringReader;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
import org.w3c.dom.DOMImplementation;
|
||||
import org.w3c.dom.DOMImplementation;
|
||||
import org.w3c.dom.Document;
|
||||
|
||||
public class XmlDocument extends XmlNode {
|
||||
@ -44,11 +44,11 @@ public class XmlDocument extends XmlNode {
|
||||
private static Logger logger = Logger.getLogger("com.rusticisoftware.scormcontentplayer");
|
||||
|
||||
public XmlDocument() throws ParserConfigurationException
|
||||
{
|
||||
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
|
||||
DocumentBuilder builder = factory.newDocumentBuilder();
|
||||
DOMImplementation impl = builder.getDOMImplementation();
|
||||
|
||||
{
|
||||
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
|
||||
DocumentBuilder builder = factory.newDocumentBuilder();
|
||||
DOMImplementation impl = builder.getDOMImplementation();
|
||||
|
||||
Document doc = impl.createDocument(null,null,null);
|
||||
setNode(doc);
|
||||
}
|
||||
@ -82,12 +82,12 @@ public class XmlDocument extends XmlNode {
|
||||
DocumentBuilder builder = factory.newDocumentBuilder();
|
||||
setNode(builder.parse(r));
|
||||
}
|
||||
|
||||
|
||||
// overload for translation from .net, which treats load() as namespace aware
|
||||
public void load(InputStream r) throws ParserConfigurationException, SAXException, IOException
|
||||
{
|
||||
load(r,true);
|
||||
}
|
||||
public void load(InputStream r) throws ParserConfigurationException, SAXException, IOException
|
||||
{
|
||||
load(r,true);
|
||||
}
|
||||
public void loadXml(String content) throws ParserConfigurationException, SAXException, IOException
|
||||
{
|
||||
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
|
||||
|
@ -1,23 +1,23 @@
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
package RusticiSoftware.System.Xml;
|
||||
|
||||
import java.io.IOException;
|
||||
@ -27,6 +27,8 @@ import java.util.Iterator;
|
||||
import org.w3c.dom.*;
|
||||
import org.xml.sax.InputSource;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
import RusticiSoftware.System.StringSupport;
|
||||
|
||||
import javax.xml.parsers.DocumentBuilder;
|
||||
import javax.xml.parsers.DocumentBuilderFactory;
|
||||
@ -179,6 +181,19 @@ public class XmlNode implements Iterable {
|
||||
// I think the XML standard says that newlines in text are converted from their
|
||||
// local encoding to "\n". Java does that, but .Net does not, so here we put 'em back.
|
||||
return node.getTextContent().replace("\n", System.getProperty("line.separator"));
|
||||
}
|
||||
|
||||
public boolean isEmptyElement()
|
||||
{
|
||||
if (StringSupport.IsEmptyOrBlank(node.getTextContent()) && getAttributes().size() == 0 && getChildNodes().size() == 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// This is a .Net extension to the DOM. It returns markup describing
|
||||
|
@ -1,23 +1,23 @@
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
package RusticiSoftware.System.Xml;
|
||||
|
||||
import java.io.IOException;
|
||||
@ -32,12 +32,12 @@ import RusticiSoftware.System.NotImplementedException;
|
||||
|
||||
public class XmlTextReader {
|
||||
protected XmlDocument xmlDocument = null;
|
||||
|
||||
protected XmlDocument getXmlDocument() throws ParserConfigurationException {
|
||||
if (xmlDocument == null) {
|
||||
xmlDocument = new XmlDocument();
|
||||
}
|
||||
return xmlDocument;
|
||||
|
||||
protected XmlDocument getXmlDocument() throws ParserConfigurationException {
|
||||
if (xmlDocument == null) {
|
||||
xmlDocument = new XmlDocument();
|
||||
}
|
||||
return xmlDocument;
|
||||
}
|
||||
public XmlTextReader() throws NotImplementedException {
|
||||
throw new NotImplementedException();
|
||||
|
@ -1,31 +1,31 @@
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
/*
|
||||
Copyright 2007-2010 Rustici Software, LLC
|
||||
|
||||
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.
|
||||
|
||||
Author(s):
|
||||
|
||||
Kevin Glynn (kevin.glynn@scorm.com)
|
||||
*/
|
||||
|
||||
package RusticiSoftware.System.Xml.Xsl;
|
||||
//
|
||||
// This is now a wrapper for XslCompiledTransform because that has superseded XslTransform going to .Net 2.0
|
||||
|
||||
import java.io.StringWriter;
|
||||
import java.io.StringReader;
|
||||
|
||||
import javax.xml.parsers.ParserConfigurationException;
|
||||
|
||||
import javax.xml.parsers.ParserConfigurationException;
|
||||
import javax.xml.transform.stream.StreamSource;
|
||||
import javax.xml.transform.stream.StreamResult;
|
||||
import javax.xml.transform.Transformer;
|
||||
|
Loading…
x
Reference in New Issue
Block a user