KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > builders > ImageAliases


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.module.builders;
11
12 import org.mmbase.module.core.*;
13
14 /**
15  * @javadoc
16  * @author Daniel Ockeloen
17  * @version $Id: ImageAliases.java,v 1.6 2003/03/10 11:50:19 pierre Exp $
18  */

19 public class ImageAliases extends MMObjectBuilder {
20
21     /**
22      * @javadoc
23      */

24     public String JavaDoc getDefaultUrl(int src) {
25         MMObjectNode node=getNode(src);
26         return node.getStringValue("url");
27     }
28 }
29
Popular Tags