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

Quick Search    Search Deep

Source code: com/sample/tutorial/update/controller/update/UpdateControllerDescriptor.java


1   /*
2    * UpdateControllerDescriptor.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.controller.update;
11  
12  import com.aendvari.common.util.*;
13  
14  /**
15   * Update controller descriptor.
16   *
17   * @author  Trevor Milne
18   *
19   */
20  
21  public class UpdateControllerDescriptor extends ResourceLoader
22  {
23    protected String getResourceName()
24    {
25      return "UpdateController.xml";
26    }
27  }
28