Source code: com/sample/addressbook/controller/contact/ContactNavigationControllerDescriptor.java
1 /*
2 * ContactNavigationControllerDescriptor.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.addressbook.controller.contact;
11
12 import com.aendvari.common.util.*;
13
14 /**
15 * Contact Contact Navigation Controller Descriptor.
16 *
17 * @author Scott Milne
18 *
19 */
20
21 public class ContactNavigationControllerDescriptor extends ResourceLoader
22 {
23 protected String getResourceName()
24 {
25 return "ContactNavigationController.xml";
26 }
27 }
28