source: other-projects/GlamED/trunk/src/org/honours/items/Data.java@ 26588

Last change on this file since 26588 was 26588, checked in by davidb, 11 years ago

Initial import of Korii's 520 project for managing digital cultural collections from Greenstone in Expeditee.

File size: 255 bytes
Line 
1package org.honours.items;
2
3import org.expeditee.items.Item;
4
5public class Data {
6
7 public static boolean HasData(Item item)
8 {
9 if(item.getData() != null){
10 if(item.getData().size() > 0){
11 return true;
12 }
13 }
14 return false;
15 }
16}
Note: See TracBrowser for help on using the repository browser.