Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Anders Blomdell
LabComm
Commits
53147edf
Commit
53147edf
authored
Mar 03, 2015
by
Anders Blomdell
Browse files
Renamed java to labcomm2014
parent
5b97cd63
Changes
41
Hide whitespace changes
Inline
Side-by-side
compiler/2014/Java_CodeGen.jrag
View file @
53147edf
...
...
@@ -79,7 +79,7 @@ aspect Java_CodeGenEnv {
private Java_env(int version, int indent) {
this.version = version;
this.verStr =
LabCommVersion.versionString(version)
;
this.verStr =
"2014"
;
this.indent = indent;
}
...
...
examples/dynamic/test/DynamicPart.java
View file @
53147edf
...
...
@@ -18,10 +18,10 @@ import java.util.Iterator;
import
java.util.LinkedList
;
import
java.util.Map
;
import
se.lth.control.labcomm.Decoder
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.Encoder
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.Decoder
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.Encoder
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
AST.Parser
;
import
AST.Scanner
;
import
AST.Program
;
...
...
examples/dynamic/test/StaticDecoder.java
View file @
53147edf
...
...
@@ -6,7 +6,7 @@ import gen.bar;
import
java.io.File
;
import
java.io.FileInputStream
;
import
java.io.InputStream
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
public
class
StaticDecoder
implements
foo
.
Handler
,
bar
.
Handler
...
...
examples/dynamic/test/StaticEncoder.java
View file @
53147edf
...
...
@@ -2,7 +2,7 @@ package test;
import
java.io.File
;
import
java.io.FileOutputStream
;
import
java.io.OutputStream
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
gen.foo
;
import
gen.bar
;
...
...
examples/dynamic/test/TestLabCommCompiler.java
View file @
53147edf
...
...
@@ -16,10 +16,10 @@ import java.util.Iterator;
import
java.util.LinkedList
;
import
java.util.Map
;
import
se.lth.control.labcomm.Decoder
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.Encoder
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.Decoder
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.Encoder
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
AST.Parser
;
import
AST.Scanner
;
import
AST.Program
;
...
...
examples/dynamic/test/TestLabcommGen.java
View file @
53147edf
...
...
@@ -18,10 +18,10 @@ import java.util.Iterator;
import
java.util.LinkedList
;
import
java.util.Map
;
import
se.lth.control.labcomm.Decoder
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.Encoder
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.Decoder
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.Encoder
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
AST.Parser
;
import
AST.Scanner
;
import
AST.Program
;
...
...
examples/jgrafchart/labcommTCPtest/client/TestClient.java
View file @
53147edf
...
...
@@ -6,8 +6,8 @@ import java.io.OutputStream;
import
java.net.Socket
;
import
java.net.UnknownHostException
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
labcommTCPtest.gen.foo
;
import
labcommTCPtest.gen.foo.Handler
;
...
...
examples/jgrafchart/labcommTCPtest/client/TestClientSingleshot.java
View file @
53147edf
...
...
@@ -6,8 +6,8 @@ import java.io.OutputStream;
import
java.net.Socket
;
import
java.net.UnknownHostException
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
labcommTCPtest.gen.FooSample
;
import
labcommTCPtest.gen.FooSample.Handler
;
...
...
examples/jgrafchart/labcommTCPtest/server/TestServer.java
View file @
53147edf
...
...
@@ -8,8 +8,8 @@ import java.lang.reflect.Method;
import
java.net.ServerSocket
;
import
java.net.Socket
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
labcommTCPtest.gen.foo
;
import
labcommTCPtest.gen.foo.Handler
;
...
...
examples/simple/Decoder.java
View file @
53147edf
...
...
@@ -2,7 +2,7 @@ import java.io.File;
import
java.io.FileInputStream
;
import
java.io.InputStream
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
public
class
Decoder
implements
theTwoInts
.
Handler
,
anotherTwoInts
.
Handler
,
IntString
.
Handler
,
TwoArrays
.
Handler
,
TwoFixedArrays
.
Handler
,
doavoid
.
Handler
...
...
examples/simple/Encoder.java
View file @
53147edf
...
...
@@ -2,7 +2,7 @@ import java.io.File;
import
java.io.FileOutputStream
;
import
java.io.OutputStream
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
/**
* Simple encoder
...
...
examples/simple/EncoderIS.java
View file @
53147edf
...
...
@@ -2,7 +2,7 @@ import java.io.File;
import
java.io.FileOutputStream
;
import
java.io.OutputStream
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
/**
* Simple encoder
...
...
examples/tcp/labcommTCPtest/client/TestClient.java
View file @
53147edf
...
...
@@ -6,8 +6,8 @@ import java.io.OutputStream;
import
java.net.Socket
;
import
java.net.UnknownHostException
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
labcommTCPtest.gen.FooSample
;
import
labcommTCPtest.gen.FooSample.Handler
;
...
...
examples/tcp/labcommTCPtest/client/TestClientSingleshot.java
View file @
53147edf
...
...
@@ -6,8 +6,8 @@ import java.io.OutputStream;
import
java.net.Socket
;
import
java.net.UnknownHostException
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
labcommTCPtest.gen.FooSample
;
import
labcommTCPtest.gen.FooSample.Handler
;
...
...
examples/tcp/labcommTCPtest/server/OneShotServer.java
View file @
53147edf
...
...
@@ -6,8 +6,8 @@ import java.io.OutputStream;
import
java.net.Socket
;
import
java.net.ServerSocket
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
labcommTCPtest.gen.FooSample
;
public
class
OneShotServer
{
//implements Handler {
...
...
examples/tcp/labcommTCPtest/server/TestServer.java
View file @
53147edf
...
...
@@ -8,8 +8,8 @@ import java.lang.reflect.Method;
import
java.net.ServerSocket
;
import
java.net.Socket
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
import
labcommTCPtest.gen.FooSample
;
import
labcommTCPtest.gen.FooSample.Handler
;
...
...
examples/user_types/Decoder.java
View file @
53147edf
...
...
@@ -3,10 +3,10 @@ import java.io.FileInputStream;
import
java.io.InputStream
;
import
java.io.IOException
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.TypeDef
;
import
se.lth.control.labcomm.TypeDefParser
;
//import se.lth.control.labcomm.TypeBinding;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.TypeDef
;
import
se.lth.control.labcomm
2014
.TypeDefParser
;
//import se.lth.control.labcomm
2014
.TypeBinding;
public
class
Decoder
implements
twoLines
.
Handler
,
...
...
examples/user_types/Encoder.java
View file @
53147edf
...
...
@@ -2,7 +2,7 @@ import java.io.File;
import
java.io.FileOutputStream
;
import
java.io.OutputStream
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
/**
* Simple encoder
...
...
examples/user_types/TDDecoder.java
View file @
53147edf
...
...
@@ -3,11 +3,11 @@ import java.io.FileInputStream;
import
java.io.InputStream
;
import
java.io.IOException
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.TypeDef
;
import
se.lth.control.labcomm.TypeDefParser
;
import
se.lth.control.labcomm.ASTbuilder
;
//import se.lth.control.labcomm.TypeBinding;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.TypeDef
;
import
se.lth.control.labcomm
2014
.TypeDefParser
;
import
se.lth.control.labcomm
2014
.ASTbuilder
;
//import se.lth.control.labcomm
2014
.TypeBinding;
import
se.lth.control.labcomm2014.compiler.Program
;
import
java.io.FileOutputStream
;
...
...
examples/wiki_example/example_decoder_encoder.java
View file @
53147edf
...
...
@@ -4,8 +4,8 @@ import java.io.FileOutputStream;
import
java.io.InputStream
;
import
java.io.OutputStream
;
import
se.lth.control.labcomm.DecoderChannel
;
import
se.lth.control.labcomm.EncoderChannel
;
import
se.lth.control.labcomm
2014
.DecoderChannel
;
import
se.lth.control.labcomm
2014
.EncoderChannel
;
public
class
example_decoder_encoder
implements
data
.
Handler
,
log_message
.
Handler
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment