Source code: com/sample/tutorial/update/view/main/MainViewDescriptor.java
1 /*
2 * MainViewDescriptor.java
3 *
4 * Copyright (c) 2001, 2002 Aendvari, Ltd. All Rights Reserved.
5 *
6 * See the file LICENSE for terms of use.
7 *
8 */
9
10 package com.sample.tutorial.update.view.main;
11
12 import com.aendvari.common.util.*;
13
14 /**
15 * Main view descriptor.
16 *
17 * @author Trevor Milne
18 *
19 */
20
21 public class MainViewDescriptor extends ResourceLoader
22 {
23 protected String getResourceName()
24 {
25 return "MainView.xml";
26 }
27 }
28