1 package org.apache.ojb.broker.metadata; 2 3 17 18 import java.io.Serializable ; 19 20 26 public class FieldHelper implements Serializable  27 { 28 private static final long serialVersionUID = -297186561855340166L; 29 public String name; 30 public boolean isAscending; 31 32 public FieldHelper(String fieldName, boolean orderAscending) 33 { 34 name = fieldName; 35 isAscending = orderAscending; 36 } 37 } 38 39 | Popular Tags |