blob: 2a21c3eb4f806666ca156ff264c8ab2a6f707286 [file] [log] [blame]
/*
-----------------------------------------------------------------------
-- CHESS core plugin --
-- --
-- Copyright (C) 2011-2012 --
-- University of Padova, ITALY --
-- --
-- Author: Alessandro Zovi azovi@math.unipd.it --
-- --
-- All rights reserved. This program and the accompanying materials --
-- are made available under the terms of the Eclipse Public License --
-- v1.0 which accompanies this distribution, and is available at --
-- http://www.eclipse.org/legal/epl-v20.html --
-----------------------------------------------------------------------
*/
package it.unipd.chess.annotations;
public class IEl {
private String name;
public IEl(String name) {
this.name = name;
}
@Override
public String toString() {
return "Element: " + name;
}
}