0
votes
5answers
52 views
Singleton to read properties file in a Java webapp; correct approach?
Hi, all.
My spaghetti monster consumes XML from several different SOAP services, and the URL for each service is hardcoded into the application. I'm in the process of undoing this hardcoding, and …
0
votes
3answers
34 views
Properties in XML
Is there a special XML element for name/value property pairs like the following, something that I can leverage in C# code?
<Properties>
<Property>
…
1
vote
0answers
16 views
LINQ to SQL - Format a string before saving?
I'm trying to convert an existing (non-LINQ to SQL) class into a LINQ to SQL entity class which has an existing (db column) property like:
public string MyString
{
get { return myString; }
…
1
vote
1answer
48 views
iPhone Obj-C Properties
Hi, I'm a beginner following a book for creating iPhone apps.
One of the steps was writing "UISwitch *whichSwitch = whichSwitch.isOn;" and I was just curious as to where "isOn" came from?
In the …
1
vote
5answers
90 views
iPhone Objective-C Basic Example Question (about Properties)
Sorry I couldn't give a more descriptive title. My question (after looking at the code below) is what statusText is. Is it an IBOutlet or a UILabel? How does "@property (retain,nonatomic) UILabel …
0
votes
1answer
18 views
Should I access Ivars directly within a class implementation?
I've been sort of on the fence on this one for a while, but I'd like to know what people think about accessing instance variables directly from within an Objective-C class implementation?
Using …
3
votes
2answers
61 views
Should all the identifiers of static properties with accessors start with uppercase letters?
I can't see anywhere that this should be the case, but I get an "Invalid declaration syntax" error in the get everytime I declare a static property that does not start with an uppercase letter. E.g:
…
1
vote
1answer
32 views
Getting an array of properties for an object in Objective-C
Is it possible to get an array of all of an object's properties in Objective C? Basically, what I want to do is something like this:
- (void)save {
NSArray *propertyArray = [self propertyNames];
…
1
vote
0answers
44 views
Different ways to use properties file in j2ee app
I have a j2ee app using Struts2. I have a gloabl properties file which is declared in struts.properties which resides in WEB-INF/classes. It has the following setting:
…
0
votes
3answers
43 views
C++/CLI shorthand properties
Hello,
How does a developer do the equivalent of this in managed c++? :
c# code
public String SomeValue
{
get;
set;
}
I've scoured the net and found some solutions, however it is hard to …
1
vote
1answer
26 views
Is it possible to use Ninject with a static property?
I have a static SessionFactory class that initializes an NHibernate session factory. Because this process is expensive (~5 sec.), I want it to be static so it's only done once, at the beginning of …
0
votes
0answers
15 views
Properties file not working with Struts2 and Glassfish
I have a properties file in my application which is built using S2. The properties files resides in WEB-INF/classes and are mentioned in struts.properties as:
…
1
vote
3answers
62 views
How to create MVC HtmlHelper table from list of objects
I am trying to create a specific HtmlHelper table extension to reduce the spaghetti code in my View.
Taking a list of domain objects I would like to display a table that is a little bit more …
0
votes
3answers
23 views
web.config explanation of profile properties
hi,
I have a List<> as part of a users profile stroed in the web.config like so
<properties>
<clear/>
<add name="EditorUploads"
…
2
votes
3answers
92 views
Does an abstract property create a private backing field?
Simple question: does an abstract property create a private backing field? Example:
public abstract Name { get; set; }
Will this create a private backing field? I want to force any class that …
