mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-11 21:48:34 +00:00
Reduced visibility on a few methods.
This commit is contained in:
parent
bae12a500c
commit
d7beb68e58
@ -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;
|
||||
|
||||
@ -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
|
||||
|
||||
@ -9,7 +9,7 @@ namespace OSCADSharp
|
||||
{
|
||||
internal class DefaultFileInvoker : IFileInvoker
|
||||
{
|
||||
private string filePath;
|
||||
private readonly string filePath;
|
||||
public DefaultFileInvoker(string filePath)
|
||||
{
|
||||
this.filePath = filePath;
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user