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.

learn more… | top users | synonyms (1)

2
votes
1answer
18 views

Specify default property value as NULL in spring

I want to define default property value in Spring XML configuration file. I want this default value to be null. Something like this: ... <ctx:property-placeholder ...
-2
votes
2answers
47 views

Remove all occurrences of property

I have code like this for (var j=0;j<100;j++){ ... data[j].property1 = something; } and now I want to remove all ocurences of property1. something like this remove data[]['property1'] ...
0
votes
2answers
30 views

How to remove key from properties keeping the original order?

I have to use a properties file and I'm interested in keeping the order of keys after removing one of them using remove()method. Is there any way to do this? Example: I have 5 entries on properties ...
0
votes
0answers
49 views

Unexpected NullPointerExeption while creating properties file?

The code is very simple : If the properties file doesn't exist, it has to be created (Java JDK1.6 , Swing): try { //loads the properties file prop.load(new ...
2
votes
1answer
19 views

Set property value containing it's own value plus other property value

So I have a WPF window. There are TextBoxes "Login" and "Ip Address" which are binded to "Login" and "IpAddress" properties. What I need is to save property Login into database as login@ipAddress. I ...
1
vote
2answers
27 views

Different usage of Objective C Properties (with/without underbar etc)

I prefer to use properties for classes in Objective-C like this (which seems standard in newer Xcode versions): /* MyClass.h */ @interface MyClass : NSObject; @property (nonatomic, strong) NSArray ...
0
votes
1answer
29 views

Check if a property exists on magically set properties

There is a lot of SO questions about the subject, notably this one, but it does not help me. There is an ambiguity between property_exists and isset so before asking my question, I'm going to ...
0
votes
0answers
49 views

Property set in different class always returns NULL

How can I properly set a property created in another class, Class A, in a secondary class, Class B? I understand how to setup properties and synthesize them. //The property is created in Class A's ...
0
votes
2answers
41 views

Is the method naming for property getters/setters standardized in IL?

I have the following two methods that I am wondering if they are appropriate: public bool IsGetter(MethodInfo method) { return method.IsSpecialName && ...
-1
votes
1answer
42 views

Does the C# Compiler optimize nested property calls into inline calls?

So in .NET I know it is more expensive to get the value of a property than that of a field, provided that the property has some sort of logic in the getter. My question is sort of two fold. Consider ...
0
votes
2answers
42 views

Is there a faster way to build a class in visual studio other than just typing out all the properties?

I'm creating a class in vb.net/asp.net and I'm able to do it somewhat quickly by typing property then hitting the shift key to fill out the rest of the code; however, if I have like 50-ish properties ...
0
votes
0answers
12 views

CXF - Wsdl2java - the XX property is already defined

I use CXF to generate client class to access web service server. The web service are based on WCF (.NET). When I call wsdl2java, I have the following error : The id property is already defined. use ...
0
votes
0answers
14 views

constant value replacing in job.properties

I am new to python. I am working on reading job.properties file in python. The properties file should be in xml format to submit a job. The properties file looks like this: var1_path=<Var1_path ...
0
votes
0answers
23 views

Visual Studio 2010 - Where to find or activate 'Build Action' properties?

I'm trying to include .rdlc file on my project when publishing. I found that I have to change the Build Action properties. Where can I find that or how can I view and edit that? As you can see, the ...
4
votes
2answers
64 views

Potecting Properties file?

Do you guys know of anyway that I could go about protecting my properties file so that only my program can alter it? I wouldn't want someone to be able to read the properties file either if it was ...
1
vote
3answers
52 views

changing dynamically created button size on rotation

I have created this button dynamically. It will be created and populated with data from our database, so I cannot use IB. However, in IB you can declare a @property and do things to later (like resize ...
0
votes
0answers
8 views

Making a textbox content visible when assosiated report field is visible

I am new in SSRS and this is a report based on a dataset that is set by a sp out of SQL 2012. I have nested grouping based on this dataset. Starting from the parent, I make the next grouping visible ...
4
votes
1answer
42 views

Reloadable properties in Spring beans (Java 1.5)

I would like to reload the Spring bean properties at runtime so that I don't have to restart the web application to reset the properties. For example the web-service client endpoint can be changed at ...
0
votes
2answers
48 views

Passing property to PHP method

I have the following class, where I added the property $user. include_once(__CA_LIB_DIR__."/ca/Search/BaseSearch.php"); include_once(__CA_LIB_DIR__."/ca/Search/ObjectSearchResult.php"); class ...
0
votes
1answer
41 views

Set same properties to several labels

so I created some code like this: label1.Text = "Test"; label2.Text = "Test"; label3.Text = "Test"; My question is, can you somehow put "Text" to all three labels at the same time? Like this ...
0
votes
0answers
18 views

VBA: Compare Word table properties

I have a Word document containing a large number of tables. I have noticed that some tables handle borders a little bit differently when the table breaks across pages then other tables. I cannot find ...
1
vote
2answers
74 views

Objective-C, what is the return value of getting a property from a nil pointer?

I always thoughts that sending a message to a nil pointer would normally return 0. So the same would apply to properties. But then this code snippet seems to contradict my assumptions NSArray ...
0
votes
2answers
26 views

Parametrized JUnit: Loading multiple property files from String array

I am trying to write a test that loads different properties files from String array. But the code keeps throwing a null pointer exception, any ideas please? @RunWith(value = Parameterized.class) ...
-1
votes
2answers
65 views

UILabel best way to change a property

When you change a property, what is the best way to do it ? _label or self.label ? ImageviewController.h #import <UIKit/UIKit.h> #import "ImageModel.h" @interface ImageViewController : ...
0
votes
0answers
48 views

Difference between defining an anonymous function and assigning it to an object property and defining a normal method?

Reading "The Secrets of a Javascript Ninja" by John Resig, I came across this snippet: var ninja = { chirp:function(){ return n>1 ? ninja.chirp(n - 1) + "-chirp" :chirp; } }; Does the ...
1
vote
1answer
23 views

Infinispan Configurations Using property file

Is it possible to load values for infinispan-config.xml file from some property file so that we can get rid of hard coded values. If possible then can somebody show me the way how i load property file ...
2
votes
4answers
70 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. ...
1
vote
2answers
18 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
27 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
48 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 ...
-1
votes
1answer
19 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
24 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
45 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
41 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
39 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
75 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
22 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
28 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
30 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
28 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
38 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
24 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
30 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
29 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 ...

1 2 3 4 5 133