01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: ElementPropertyParameterUsed.java 3634 2007-01-08 21:42:24Z gbevin $
07: */
08: package com.uwyn.rife.gui.old;
09:
10: import com.uwyn.rife.gui.Rife;
11: import com.uwyn.rife.swing.JDialogError;
12: import com.uwyn.rife.tools.Localization;
13:
14: class ElementPropertyParameterUsed extends ElementPropertyParameter {
15: public ElementPropertyParameterUsed(Element element, String name) {
16: super (element, name);
17: }
18:
19: public JDialogError getUnicityErrorDialog() {
20: return new JDialogError(
21: Rife.getMainFrame(),
22: "rife.dialog.usedparameterexists.title",
23: Localization
24: .getString("rife.dialog.usedparameterexists.message"));
25: }
26: }
|