Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
a19a006
Added NetFramework directory (which contains xml files) to CSharpTran…
MathieuBlond-Ijinus Apr 14, 2015
d4dc8b9
Patched unimported ArgumentNullException class from CS2JNet.System by…
MathieuBlond-Ijinus Apr 15, 2015
78ef9be
Patched unimported ArgumentOutOfRangeException class from CS2JNet.Sys…
MathieuBlond-Ijinus Apr 15, 2015
0749314
Update and rename README to README.md
MathieuBlond-Ijinus May 28, 2015
5317961
Update README.md
MathieuBlond-Ijinus May 29, 2015
1d55b66
XML translation files modified to better fit Java
MathieuBlond-Ijinus Jun 5, 2015
7e47bfd
XML translation files modified to better fit Java
MathieuBlond-Ijinus Jun 5, 2015
3926390
XML translation files modified to better fit Java
MathieuBlond-Ijinus Jun 5, 2015
3e8b279
We have disabled the ref support since CS2J works better without. We …
MathieuBlond-Ijinus Jun 5, 2015
014ca2e
Modified the way 'out' are handled is JavaPrettyPrint.g
MathieuBlond-Ijinus Jun 5, 2015
0baef63
Merge pull request #1 from MathieuBlond-Ijinus/LocalChanges
MathieuBlond-Ijinus Jun 5, 2015
40bb026
Update README.md
MathieuBlond-Ijinus Jun 5, 2015
a04965f
Update README.md
MathieuBlond-Ijinus Jun 9, 2015
f79a283
Updated project and licence
MathieuBlond-Ijinus Jul 3, 2015
834427c
Added MemoryStream.xml to fit the new MemoryStream class in CS2JLibra…
MathieuBlond-Ijinus Jul 3, 2015
fc91feb
Updated grammars to delete some unwanted interfaces and improve opera…
MathieuBlond-Ijinus Jul 3, 2015
006bed7
Updated some CS2JLibrary classes - Added a MemoryStream class !
MathieuBlond-Ijinus Jul 3, 2015
82f6dab
Merge pull request #2 from MathieuBlond-Ijinus/LocalChanges
MathieuBlond-Ijinus Jul 3, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,12 @@ public static int getInteger()
{
return getAllowLeadingWhite() | getAllowTrailingWhite() | getAllowLeadingSign();
}


public static int getFloat()
{
return getAllowLeadingWhite() | getAllowTrailingWhite() | getAllowLeadingSign() | getAllowDecimalPoint();
}

public static int getHexNumber()
{
return getAllowLeadingWhite() | getAllowTrailingWhite() | getAllowHexSpecifier();
Expand Down
12 changes: 12 additions & 0 deletions CS2JLibrary/src/CS2JNet/System/IO/DataInOut.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package CS2JNet.System.IO;

import java.io.DataInput;
import java.io.DataOutput;

public interface DataInOut extends DataInput, DataOutput {
public long length();
public void setLength(long newLength);
public void seek(long pos);
public long position();
public byte[] toArray();
}
Loading