MatrixBerryCore
StaticPropStorage.m
Go to the documentation of this file.
1 classdef StaticPropStorage<mxberry.core.obj.StaticPropStorage
2  methods (Static)
3  function [propVal,isThere]=getProp(propName,varargin)
4  branchName=mfilename('class');
5  [propVal,isThere]=mxberry.core.obj.StaticPropStorage.getPropInternal(...
6  branchName,propName,varargin{:});
7  end
8  function setProp(propName,propVal)
9  branchName=mfilename('class');
11  branchName,propName,propVal);
12  end
13  function flush()
14  branchName=mfilename('class');
15  mxberry.core.obj.StaticPropStorage.flushInternal(branchName);
16  end
17  end
18 end
static function setPropInternal(in branchName, in propName, in propVal)
static function getPropInternal(in branchName, in propName, in isPresenceChecked)