Home | History | Annotate | Download | only in grid

Lines Matching defs:GridModel

78 public class GridModel {
159 * Constructs a {@link GridModel} for the given layout
165 private GridModel(IClientRulesEngine rulesEngine, INode node, Object viewObject) {
175 private static WeakReference<GridModel> sCachedViewModel;
186 public static GridModel get(
191 GridModel model = sCachedViewModel.get();
197 GridModel model = new GridModel(rulesEngine, node, viewObject);
198 sCachedViewModel = new WeakReference<GridModel>(model);
399 * Loads a {@link GridModel} from the XML model.
681 Pair<int[], int[]> cellBounds = GridModel.getAxisBounds(mViewObject);