source: other-projects/GlamED/trunk/src/org/honours/collection/NoteLayer.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: 629 bytes
Line 
1package org.honours.collection;
2
3import org.expeditee.gui.Frame;
4
5/**
6 *
7 * @author Korii
8 */
9public class NoteLayer {
10
11 private Frame _frame;
12 private CollectionItem _associatedItem;
13
14 public NoteLayer(){}
15
16 public NoteLayer(Frame frame, CollectionItem associatedItem){
17 _frame = frame;
18 _associatedItem = associatedItem;
19 }
20
21 public void setFrame(Frame frame){
22 _frame = frame;
23 }
24
25 public Frame getFrame(){
26 return _frame;
27 }
28
29 public void setAssociatedItem(CollectionItem cItem){
30 _associatedItem = cItem;
31 }
32
33 public CollectionItem getItem(){
34 return _associatedItem;
35 }
36
37}
Note: See TracBrowser for help on using the repository browser.