mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-25 20:08:28 +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
|
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;
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user