MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / Owner

Class Owner

src/main/java/com/sql/parse/model/Owner.java:3–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.sql.parse.model;
2
3public class Owner {
4 private boolean disable = false;
5
6 private String name;
7
8 public Owner(String name) {
9 this.name = name;
10 }
11
12 public boolean isDisable() {
13 return disable;
14 }
15
16 public void setDisable(boolean disable) {
17 this.disable = disable;
18 }
19
20 public String getName() {
21 return name;
22 }
23
24 public void setName(String name) {
25 this.name = name;
26 }
27}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected