List of usage examples for org.springframework.beans.support MutableSortDefinition MutableSortDefinition
public MutableSortDefinition()
From source file:com.aw.swing.mvp.binding.component.support.ColumnInfo.java
public ColumnInfo setAsSorted(boolean ascending) { sortDefinition = new MutableSortDefinition(); ((MutableSortDefinition) sortDefinition).setProperty(fieldName); ((MutableSortDefinition) sortDefinition).setAscending(ascending); return this; }