Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/sample/addressbook/config/contact/ContactSearchConfigDescriptor.java


1   /*
2    * ContactSearchConfigDescriptor.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.config.contact;
11  
12  import com.aendvari.common.util.*;
13  
14  /**
15   * Addressbook application assembly descriptor.
16   *
17   * @author  Scott Milne
18   *
19   */
20  
21  public class ContactSearchConfigDescriptor extends ResourceLoader
22  {
23    protected String getResourceName()
24    {
25      return "ContactSearchConfig.xml";
26    }
27  }
28