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
{
public string InnerValue
internal string InnerValue
{
get;
set;
@ -33,7 +33,7 @@ namespace OSCADSharp
private string boundProperty = null;
public bool IsBound { get; set; } = false;
internal bool IsBound { get; set; } = false;
public void Bind(string property, Variable variable)
{
this.IsBound = true;

View File

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

View File

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

View File

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