001 package org.maltparser.core.syntaxgraph; 002 /** 003 * 004 * 005 * @author Johan Hall 006 */ 007 public interface Weightable { 008 public void setWeight(double weight); 009 public double getWeight(); 010 }