
com.draagon.util.exp.ExpressionGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities Show documentation
Show all versions of utilities Show documentation
Draagon Utilities used by other Draagon projects
The newest version!
/*
* Copyright 2003 Draagon Software LLC. All Rights Reserved.
*
* This software is the proprietary information of Draagon Software LLC.
* Use is subject to license terms.
*/
package com.draagon.util.exp;
public class ExpressionGroup extends Expression
{
private Expression mGroup = null;
ExpressionGroup( Expression group )
{
mGroup = group;
}
public Expression getGroup()
{
return mGroup;
}
public String toString()
{
return "( " + getGroup() + " )";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy