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

us.ihmc.simulationconstructionset.gui.config.Configuration Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
package us.ihmc.simulationconstructionset.gui.config;

public class Configuration
{
   private String name;
   private String graphGroupName = "", entryBoxGroupName = "";

   public Configuration(String name)
   {
      this.name = name;
   }

   public void setName(String name)
   {
      this.name = name;
   }

   public String getName()
   {
      return name;
   }

   public void setGraphGroupName(String graphGroupName)
   {
      this.graphGroupName = graphGroupName;
   }

   public void setEntryBoxGroupName(String entryBoxGroupName)
   {
      this.entryBoxGroupName = entryBoxGroupName;
   }

   public String getGraphGroupName()
   {
      return graphGroupName;
   }

   public String getEntryBoxGroupName()
   {
      return entryBoxGroupName;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy