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

Quick Search    Search Deep

Source code: com/sample/tutorial/update/view/update/UpdateViewDescriptor.java


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