All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.semispace.space.tutorial.Element Maven / Gradle / Ivy

Go to download

Part of the SemiSpace tutorial: Simple example of SemiSpace interaction.

There is a newer version: 1.3.1
Show newest version
/*
 * ============================================================================
 *
 *  File:     Element.java
 *----------------------------------------------------------------------------
 *
 * No copying allowed without explicit permission.
 *
 *  All rights reserved.
 *
 *  Description:  See javadoc below
 *
 *  Created:      27. jan.. 2008
 * ============================================================================ 
 */

package org.semispace.space.tutorial;

/**
 * A simple name / value element.
 */
public class Element {
    private String name;
    private String value;
    public String getName() {
        return this.name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getValue() {
        return this.value;
    }
    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy