Skip to content
Snippets Groups Projects
Select Git revision
  • 7ee6a039276bf50edc90dbe0c4094f3461cde07b
  • master default
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.1
  • v2014.0
  • v2013.0
10 results

ArrayTypeRewrite.jrag

Blame
  • Forked from Anders Blomdell / LabComm
    Source project has a limited visibility.
    LabCommDecoder.java NaN GiB
    package se.lth.control.labcomm2006;
    
    import java.io.IOException;
    
    public interface LabCommDecoder {
      
      public void register(LabCommDispatcher dispatcher, 
    		       LabCommHandler handler) throws IOException;
      public boolean decodeBoolean() throws IOException;
      public byte decodeByte() throws IOException;
      public short decodeShort() throws IOException;
      public int decodeInt() throws IOException;
      public long decodeLong() throws IOException;
      public float decodeFloat() throws IOException;
      public double decodeDouble() throws IOException;
      public String decodeString() throws IOException;
      public int decodePacked32() throws IOException;
    
    }