/Users/johnr/Dropbox/johnrayworth.info/largeFilesOutsideJSR/__IB-Other/Other/IA-Solutions-2020/Nont/Product/Nont - IA/src/nont/ia/Chord.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package nont.ia;
 7 
 8 /**
 9  *
10  * @author 15837
11  */
12 public class Chord {
13     private String baseChord = "not yet set";
14     private boolean minor = false;
15     private String varience = "not yet set";
16     private boolean outOfKey = false;
17     
18     public Chord(){
19         
20     }
21     
22     public Chord(String baseChord, boolean minor, String varience, boolean outOfKey){
23         this.baseChord = baseChord;
24         this.minor = minor;
25         this.varience = varience;
26         this.outOfKey = outOfKey;
27     }
28     
29     public String getBaseChord(){
30         return baseChord;
31     }
32     
33     public boolean getMinor(){
34         return minor;
35     }
36     
37     public String getVarience(){
38         return varience;
39     }
40     
41     public boolean getOutOfKey(){
42         return outOfKey;
43     }
44     
45     public void setBaseChord(String baseChord){
46         this.baseChord = baseChord;
47     }
48     
49     public void setMinor(boolean minor){
50         this.minor = minor;
51     }
52     
53     public void setVarience(String varience){
54         this.varience = varience;
55     }
56     
57     public void setOutOfKey(boolean outOfKey){
58         this.outOfKey = outOfKey;
59     }
60 }
61