All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.wala.shrike.sourcepos.PositionsAttribute Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2002 - 2014 IBM Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 */

/*
 * PositionsAttribute.java
 *
 * Created on 23. Mai 2005, 19:31
 */

package com.ibm.wala.shrike.sourcepos;

import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
import java.io.IOException;

/**
 * This is the super class of all position attributes.
 *
 * @author Siegfried Weber
 * @author Juergen Graf <[email protected]>
 */
abstract class PositionsAttribute {

  /**
   * Creates a new instance of PositionsAttribute.
   *
   * @param data the byte array containing the attribute
   * @throws IOException An IOException is thrown if the attribute can't be read or {@code data} is
   *     null.
   */
  PositionsAttribute(byte[] data) throws IOException {
    if (data == null) throw new IOException();
    DataInputStream in = new DataInputStream(new ByteArrayInputStream(data));
    readData(in);
  }

  /**
   * Reads the attribute data from the input stream.
   *
   * @param in the input stream
   * @throws IOException if the input stream cannot be read.
   */
  protected abstract void readData(DataInputStream in) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy