public void write()

in src/com/pty4j/windows/cygwin/CygwinPTYOutputStream.java [24:40]


  public void write(byte[] b, int off, int len) throws IOException {
    if (myClosed) {
      return;
    }

    if (b == null) {
      throw new NullPointerException();
    }
    else if ((off < 0) || (off > b.length) || (len < 0) || ((off + len) > b.length) || ((off + len) < 0)) {
      throw new IndexOutOfBoundsException();
    }
    else if (len == 0) {
      return;
    }

    myNamedPipe.write(b, off, len);
  }