A property, in some object-oriented programming languages, is a special sort of class member, intermediate between a field (or data member) and a method. Properties are read and written like fields, but property reads and writes are (usually) translated to get and set method calls.
2
votes
4answers
55 views
Access property/variable from unknown object
I have a list of 'object' that has different kinds of objects in it. I need to be able to edit/read a property of the objects that all of them have, but I don't know how to do that.
...
0
votes
2answers
16 views
how to load multiple xml files using spring util-properties
I have multiple sqlQueries.xml files e.g sqlQueries.xml, sqlQueriesAB.xml, sqlQueriesBC.xml and i want to load all of them using below tag but it seems that only supports loading one file only.
...
0
votes
0answers
10 views
Passing object with list property from view to controller (ASP.NET MVC4)
I'm trying to pass an object with a list property from a view to the controller. All the olher properties (int and string types) are passed with it's values, but thle list property is passed as a null ...
0
votes
1answer
25 views
How to fix weird ordering in setProperty or put for Properties class
I'm having a dilemma on the ordering of setProperty or put for the Properties class.
The idea is that I want to save a sorted Properties file. I've got the sorting classes ready, but when I do a ...
2
votes
2answers
40 views
How do I override a field in a base class with a property in a derived class?
I have a base class that uses a field:
class Base(object):
def __init__(self, member):
self.member = member
And a derived class that would like to promote this to a property, and add ...
0
votes
0answers
13 views
Save the modified Property file inside WAR deployed on server
We are trying to use Apache PropertiesConfiguration in our project using JSF and JBoss.
My property file is located inside a package say demo.prop by the name of Prop1.prop
Inside my WAR file the ...
2
votes
1answer
22 views
Why does self.SwipeDirection work if the property is called swipeDirection?
I have a simple ViewController derived from UIViewController to which I have added an enum property swipeDirection. In the code I normally refer to it as self.swipeDirection but in one instance I ...
0
votes
3answers
38 views
get property from id class
ABC *abc=[ABC new];
id property=abc.property;
but:
id ClassName=NSClassFromString(ABC);
id instance=[ClassName new];
id property=???????;
i can't use instance.property,because it is id type.
i ...
0
votes
1answer
40 views
Objective C - whats the advantage or rationale of properties? [duplicate]
I am new to objective c
All the time i read something about properties and delegates
@synthesize something;
@property (nonatomic, retain) IBOutlet something<Something> Something;
While my ...
-2
votes
0answers
62 views
Already Answered - junit load property files from seperate class [closed]
I know in JUnit it can load property files using code similar to:
Properties prop = new Properties();
Reader red = new FileReader(new File("Configurations.properties"));
prop.load(red);
I need ...
3
votes
2answers
36 views
Self pointer, using with C++ from Objective C
I am having a slight confusion with the self pointer. I understand that if I want to use self in objective C, I need to pass it as a parameter e.g.
someFunction(id self)
{
}
What I'm slightly ...
0
votes
1answer
70 views
objc: strong property with NSString
I declare a strong property:
@property (strong) NSString *message;
And I set the message like:
self.message = [NSString stringWithFormat:@"xxxx %@",sth];
But it will crashed with message:
*** ...
0
votes
1answer
16 views
Cypher - Referencing a Node from a property on a reference
Given a graph where a property on a Relationship is a key to a Node, how can I return the node referenced by the Relationship property?
So, given the graph:
Node(user1 { type: "user", uid: "u1", ...
0
votes
0answers
26 views
Using SyncLock inside a property
I have a variable that is being used by multiple threads, so I am using SyncLock when getting and setting the variable. I am wondering if I can wrap the SyncLock inside a property, so that I don't ...
0
votes
0answers
22 views
save Properties based on ComboBox
I am currently trying to Change a Name pattern for e-mails that are saved on SharePoint through an addon that I'm developing.
I have a Combobox, the pattern properties should Change based on what is ...
0
votes
2answers
28 views
Getting an object property multiple times in a row vs getting it once and storing in a variable. Will the compiler optimize it anyway?
Is it better to store an object property when you access it multiple times in a row? Below is a rather silly example of getting an object property multiple times in a row and two ways of dealing with ...
0
votes
1answer
27 views
Making properties available in datagridview usercontrol c#
Since a few days I've started coding a datagridview with paging. The paging itself works and calculates well. But now I've ran into a problem, I need properties from my custom made user control that ...
4
votes
2answers
46 views
Can I get to the object of a property if I have a reference to the property only?
I have the reference to a property of an object in a variable,is it possible to access the object to which this property belongs?
1
vote
4answers
63 views
Checking for incorrect input inside properties in C#
I am using properties to allow a single string name to be added to the class Details, I want the property to only accept the string if it can be split into two parts.
The two parts would be the ...
0
votes
0answers
32 views
Eclipse, Why does Project/Properties/Android does not work?
I have a problem when I select any project then I go to Properties and then select Android.
the problem is that when I select Android it remains loading.
English is not my mother tongue but I hope ...
-1
votes
0answers
23 views
What ant command should I use when changing a spring message properties file
We have messages.properties file which contains labels . Something like
label.industry=Industry
label.representative=Representative
label.sector=Sector
label.issuerSize=Issuer Size
From a jsp page ...
0
votes
1answer
29 views
Property doesn't match type of instance variable?
I took some sample code from Apple's SimpleFTPSample
Which looks like this:
@interface PutController () <UITextFieldDelegate, NSStreamDelegate>
...
@property (nonatomic, assign, readonly) ...
0
votes
2answers
27 views
JavaScript property & field reflection
I came across this little snippet of code for property reflection in JavaScript:
function GetProperties(obj) {
var result = [];
for (var prop in obj) {
if (typeof obj[prop] !== ...
0
votes
0answers
13 views
UserControl - Show properties of inner-control in design-mode properties windows
I got a UserControl name UC1, which contain 2 controls (textbox, label). after that i create new windows form and drag the UC1 to it, how can i read and write ALL properties of textbox and label ...
0
votes
1answer
23 views
How to make predicate to Entity's customized property
This question is an ongoing one for my previous question.
I want to make a predicate to filter the entity by my customized property, this is the entity class
@interface Expense : NSManagedObject
...
0
votes
1answer
18 views
Adding Title & Location properties to this custom ColorDialog
I've taken a piece from a custom Colordialog class and another piece of other custom Colordialog.
The first class have implemented the Title property.
This is the first class (The marked answer ...
0
votes
3answers
76 views
C# Is it possible to call a method from a property within a class?
So I'm pretty new to programming, and I try to learn new things by trying a lot of things. But at the moment I got stuck on something...
Basically what I am trying to accomplish is to be able to use ...
0
votes
2answers
17 views
How to decorate property with ExpandableObject in C#
I am trying to display this class instance in the Xceed PropertyGrid per the instructions here:
PG.SelectedObject = new Order()
{
ShipAddress = "Luisenstr. 48",
...
0
votes
0answers
5 views
Telerik WPF PropertyGrid : to display nested properties must AutoGeneratePropertyDefinitions be false
Is it possible to display nested properties of an object in the Telerik WPF PropertyGrid when AutoGeneratePropertyDefinitions is set to true?
0
votes
1answer
5 views
mediawiki how to query for pages using a certain template?
I have pages which use this template:shape
{{shape|Shape name=ACTOR ROLE|Diagram
type=ATD|Version=3.5|Shape=File:ACTOR ROLE V3.5.svg}}
i want to use something that choses pages with that template ...
2
votes
3answers
23 views
Filter out comments when writing Properties to a file
I am using java.util.Properties#store() method to save my properties to a file:
os = new BufferedOutputStream(new FileOutputStream(propertiesFile));
properties.store(os, null);
Default ...
3
votes
1answer
50 views
Strange behaviour with properties
I have a strange behaviour with C#.
I've got a class that includes statics, something that lokks like that :
public class Status
{
public int Id { get; internal set; }
public string Name ...
2
votes
1answer
31 views
Is this a valid way to assign properties to an object?
Is this a valid way to assign properties to an object? I have an if/ else statement and I want it to determine what the properties of p and i are.
function game(){
var self = this;
...
5
votes
2answers
72 views
Strange behavior with property indexer
I discovered a strange behavior when using property indexer (C#).
Consider the following program:
public class Program
{
public static void Main(string[] args)
{
CustomMessageList ...
1
vote
0answers
40 views
Not getting values from application.properties file in spring
I am trying to configure appliaction.properties file in my spring application.
Inside my spring-servlet.xml I have
<context:property-placeholder location="classpath:application.properties" />
...
0
votes
0answers
51 views
How to automatically fill one property from a field in another property?
I use asp.net web api with oData and EF. And I have a model:
public class Model{
public int ViewCount { get; set; }
public List<ViewLog> ViewLogs { get; set; }
}
ViewLogs - gets from db a ...
1
vote
1answer
29 views
Referencing an object property with numeric value in JavaScript
I've run into a - what seems - somewhat strange problem. Let's say I have a JavaScript object like this one:
var Object = {
Property1: 0,
Property2: 1,
TxtProperty: "Sample text",
...
0
votes
0answers
42 views
java.io.Writer.write() stripping double backslash \\
I'm reading in a file directory from a windows machine that comes in as:
C:\\some dir\\someDir
When I go to write this out to a file using java.io.Writer.write(), somehow the \\ chars get stripped? ...
1
vote
1answer
35 views
Obj-C: Delegate property to an instance variable?
So, let's say I have an Obj-C class with an array as a property, something like this:
@interface Collection
@property (strong, nonatomic) NSArray *items;
@end
So, let's assume that while I've got ...
2
votes
2answers
23 views
accessing a javascript's object property without knowing that property name
Situation
I have a json object being returned. Below is an example of one. The who in this particular example can change to whatever property name is required. So for example next time this will be ...
0
votes
1answer
17 views
iOS Data persistence when backgrounding app
In my iOS application I have a custom class with a property with a strong attribute. When I hit the home button to background the app and resume again it appears the property value stays in memory. ...
1
vote
3answers
38 views
Can ViewModel have property of type IEnumerable<> instead of Array
I generally construct my ViewModel like this:
MyViewModel {
(...)
IEnumerable<MyClass> Items {get; set;}
}
Should I ever care (be afraid) that I am not passing an already evaluated values ...
2
votes
3answers
80 views
IBOutlets strong or weak [duplicate]
Outlets can be created like this
@interface SearchViewController : UIViewController<UISearchBarDelegate> {
IBOutlet UIView *viewSearchBar;
IBOutlet UIScrollView *scrollVieww;
...
0
votes
2answers
42 views
Cannot access properties
I got a Spring MVC application. It runs over the Tomcat 7 server.
I want to make a props.properties file, so my app could access properties during Beans initialization process.
So i did the ...
0
votes
1answer
33 views
Some questions about OOP
I have an object called clock.
I have a method of said object called time.
If I used this.propertyName inside my time method, this will give the property to my clock object, right? But what if there ...
1
vote
3answers
22 views
PHP Class Properties change after assigned to variable
Take this example. I never noticed behaviour like this:
class foo
{
public $foo = 0;
public function addFoo()
{
$this->foo = $this->foo + 1;
return $this;
}
}
...
2
votes
4answers
71 views
C# related on Constructor and Property
I am building some tiny lib, and I have run into a problem.
I want to provide a two-way solution, for example:
How can I accomplish this?
I am getting exception thrown, because it expects ...
0
votes
5answers
64 views
How to tell if an enum property has been set? C#
I have a class with an enum property like so:
public class Foo
{
public Color ColorType {get;set;}
}
public enum Color
{
Red,
Green,
}
Now this class can be initialized like so:
var ...
0
votes
4answers
31 views
which form of property declaration is more appropriate?
It's been a while this simple question is disturbing me , I've seen two form of declaring properties , and I was wondering what's the different and Is there any reason that makes me prefer one to ...
0
votes
1answer
24 views
Properties that are read-only, but only outside of the class
Is there a way to create a property that can be changed within the class, but still accessed with objectName.propertyName outside of it? I'm curious if I can access the property without a get method ...

