edu.iris.dmc.seed.control.dictionary.AbstractDictionaryBlockette Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-4-seed Show documentation
Show all versions of java-4-seed Show documentation
Java API to work with seismic dataless seed
The newest version!
package edu.iris.dmc.seed.control.dictionary;
import edu.iris.dmc.seed.AbstractBlockette;
public abstract class AbstractDictionaryBlockette extends AbstractBlockette implements DictionaryBlockette {
public AbstractDictionaryBlockette(int type, String title) {
super(type, title);
}
protected int lookupKey;
@Override
public int getLookupKey() {
return this.lookupKey;
}
public void setLookupKey(int lookupKey) {
this.lookupKey = lookupKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy