Skip to content
Snippets Groups Projects
Select Git revision
  • ae14bd904007cef360965e091ef4844fc30a6e5d
  • master default
  • labcomm2014
  • labcomm2006
  • python_sig_hash
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.6
  • v2015.0
  • v2014.5
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
21 results

Decoder.java

Blame
  • Decoder.java 646 B
    package se.lth.control.labcomm2006;
    
    import java.io.IOException;
    
    public interface Decoder {
      
      public void register(SampleDispatcher dispatcher, 
    		       SampleHandler 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;
    
    }