0
votes
1answer
6 views
Grails indexed parameters
I have a list of Team objects that have an Integer seed property. I want to edit all the teams' seeds at once, in a single form. I'm sure that Grails supports indexed parameters, b …
0
votes
2answers
38 views
Spring Properties File
I am using this in my application config to specify where to get my messages
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessage …
0
votes
2answers
894 views
How to collect spring properties from multiple files for use on a single bean
I haven't gotten my head wrapped around Spring yet, so correct me if this question doesn't make sense...
I have a PropertyPlaceholderConfigurer
<bean id="rdbmPropertiesPlachol …
1
vote
4answers
56 views
Why am I getting a stack overflow when using properties in the constructor?
I have a non-static class in which i have several properties, ie serverURL, serverPort etc, and the class has a constructor. The constructor accepts arguments which it then uses to …
0
votes
2answers
28 views
Log4J not adding newlines between logfile entries
I am just starting with log4j. I don't have a problem with it reading my properties file and actually logging events, but it seems to be appending everything to the end of the same …
2
votes
3answers
190 views
Adding a set accessor to a property in a class that derives from an abstract class with only a get accessor
I have an abstract class, AbsClass that implements an interface, IClass. IClass has a couple properties with only Get accessors. AbsClass implements the properties of IClass as abs …
0
votes
3answers
30 views
ASP.NET 3.5 properties’ private member access within class
I have read about how in ASP.NET 3.5 you can declare properties in C#
public DateTime DisplayDate
{
get;
}
instead of
private DateTime _displayDate
public DateTime Displa …
3
votes
5answers
101 views
Complete list of available Java System Properties and Known Values
I've been inspired by another question: Best Practice for Using Java System Properties
I'm currently looking for a complete list of Java system properties and possible values. I'm …
0
votes
2answers
33 views
Is it possible to add properties to My.Application or My.User?
Is it possible to add user-defined properties to the My.Application or My.User objects?
I've got some properties defined currently that tell me what environment the app is running …
0
votes
3answers
27 views
Save/Load Properties to file or databse provider
I need to save and load properties of a Class dynamicly,
but what is the best practis for this ?
I have for now, two classes that I need to save.
public abstract class BaseCompo …
0
votes
2answers
27 views
getResourceAsStream works differently on Mac OSX vs. Windows 7?
Hi all,
I have a set of unit test cases that depend on a test.properties file. When I run the tests under Mac OSX or Linux using Maven ('mvn test'), they work fine. But when run …
0
votes
2answers
55 views
Returning a property of type List<>
Hello there,
I'm currently trying to return a match to a Foreach statement which is contained in a list.
I have a class that has a List of string, i'm using this as a collection o …
2
votes
4answers
2k views
How to access properties of a usercontrol in C#
Hi,
I've made a C# usercontrol with one textbox and one richtextbox.
How can I access the properties of the richtextbox from outside the usercontrol.
For example.. if i put it i …
0
votes
2answers
43 views
What is the purpose of these PHPDOC properties?
In general, the PHPDOC properties are self-explanatory, but I'm having hard time understanding these:
@category - what is this exactly?
@package - could some one provide me examp …
1
vote
5answers
54 views
What is the accepted way to enforce proper value in property which depends on other properties of the same class?
Let's say I have a class which has three properties as below.
public class Travel
{
public int MinAirportArrival { get; set; }
public int MinFlightTime { get; set; }
publi …
