1 14 package org.compiere.model; 15 16 import java.util.*; 17 import java.sql.*; 18 19 25 public class MAttributeValue extends X_M_AttributeValue 26 { 27 public MAttributeValue (Properties ctx, int M_AttributeValue_ID) 28 { 29 super (ctx, M_AttributeValue_ID); 30 38 } 40 public MAttributeValue (Properties ctx, ResultSet rs) 41 { 42 super (ctx, rs); 43 } 45 49 public String toString() 50 { 51 return getName(); 52 } 54 } | Popular Tags |