Reduced visibility on a few methods.

This commit is contained in:
Michael Smith 2016-03-14 18:16:31 -07:00
parent bae12a500c
commit d7beb68e58
4 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ namespace OSCADSharp
{ {
internal class BindableBoolean : IBindable internal class BindableBoolean : IBindable
{ {
public string InnerValue internal string InnerValue
{ {
get; get;
set; set;
@ -33,7 +33,7 @@ namespace OSCADSharp
private string boundProperty = null; private string boundProperty = null;
public bool IsBound { get; set; } = false; internal bool IsBound { get; set; } = false;
public void Bind(string property, Variable variable) public void Bind(string property, Variable variable)
{ {
this.IsBound = true; this.IsBound = true;

View File

@ -9,7 +9,7 @@ namespace OSCADSharp
/// <summary> /// <summary>
/// An object whose properties can be bound to variables /// An object whose properties can be bound to variables
/// </summary> /// </summary>
public interface IBindable internal interface IBindable
{ {
/// <summary> /// <summary>
/// Binds a variable to property of this object /// Binds a variable to property of this object

View File

@ -9,7 +9,7 @@ namespace OSCADSharp
{ {
internal class DefaultFileInvoker : IFileInvoker internal class DefaultFileInvoker : IFileInvoker
{ {
private string filePath; private readonly string filePath;
public DefaultFileInvoker(string filePath) public DefaultFileInvoker(string filePath)
{ {
this.filePath = filePath; this.filePath = filePath;

View File

@ -11,7 +11,7 @@ namespace OSCADSharp
private CubeBindings bindings; private CubeBindings bindings;
private Cube cube; private Cube cube;
public CubeScriptBuilder(CubeBindings bindings, Cube cube) internal CubeScriptBuilder(CubeBindings bindings, Cube cube)
{ {
this.bindings = bindings; this.bindings = bindings;
this.cube = cube; this.cube = cube;