001/* 002 * JScience - Java(TM) Tools and Libraries for the Advancement of Sciences. 003 * Copyright (C) 2006 - JScience (http://jscience.org/) 004 * All rights reserved. 005 * 006 * Permission to use, copy, modify, and distribute this software is 007 * freely granted, provided that this notice is preserved. 008 */ 009package org.jscience.mathematics.structure; 010 011import javolution.lang.ValueType; 012 013/** 014 * This interface represents a mathematical structure on a set (type). 015 * 016 * @author <a href="mailto:jean-marie@dautelle.com">Jean-Marie Dautelle</a> 017 * @version 3.0, February 13, 2006 018 * @see <a href="http://en.wikipedia.org/wiki/Structure_%28mathematics%29"> 019 * Wikipedia: Mathematical Structure</a> 020 */ 021public interface Structure<T> extends ValueType { 022 023}