/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.isecpartners.gizmo;
/**
*
* @author rachel
*/
public class Prefix {
int length = -1;
public Prefix(int length) {
this.length = length;
}
public int getLength() {
return this.length;
}
}