PPL Configured Java Language Interface  1.2
Variable_Stringifier.java
Go to the documentation of this file.
1 /* Variable_Stringifier Java interface.
2  Copyright (C) 2010-2016 BUGSENG srl (http://bugseng.com)
3 
4 This file is part of the Parma Polyhedra Library (PPL).
5 
6 The PPL is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3 of the License, or (at your
9 option) any later version.
10 
11 The PPL is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15 
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.
19 
20 For the most up-to-date information see the Parma Polyhedra Library
21 site: http://bugseng.com/products/ppl/ . */
22 
23 package parma_polyhedra_library;
24 
26 
31 public interface Variable_Stringifier {
32  public String stringify(long var_id);
33 }
An interface for objects converting a Variable id to a string.