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

kz.greetgo.libase.strureader.ViewRow Maven / Gradle / Ivy

package kz.greetgo.libase.strureader;

import java.util.HashSet;
import java.util.Set;

public class ViewRow {
  public String name, content;
  
  public ViewRow(String name, String content) {
    this.name = name;
    this.content = content;
  }
  
  public Set dependenses = new HashSet<>();
  
  @Override
  public String toString() {
    return "ViewRow [name=" + name + ", dependenses=" + dependenses + ", content=" + content + "]";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy