1
vote
4answers
57 views
how to detect operating system language (locale) from java code
What is the correct way of knowing operating system language (locale) from java code?
I have tried
Locale.getDefault()
System.getProperties("user.language")
etc.
but they are not correct nothing …
2
votes
1answer
85 views
Are Python properties broken?
How can it be that this test case
import unittest
class PropTest(unittest.TestCase):
def test(self):
class C():
val = 'initial val'
def get_p(self):
…
1
vote
1answer
21 views
property names are different from original Object in the silverlight
Following is part of service layer which is provided by WCF service :
[Serializable]
public class WaitInfo
{
private string roomName;
private string pName;
private string tagNo;
…
3
votes
5answers
61 views
Approach to side-effect-free setters
I would like to get your opinion on as how far to go with side-effect-free setters.
Consider following example
Activity activity;
activity.Start = "2010-01-01";
activity.Duration = "10 days"; …
1
vote
2answers
50 views
Javascript object list sorting by object property
I need to do this:
(sorry not in javascript syntax-still learning object language :) )
object=car
attibutes:top-speed, brand....
now I want to sort the list of those cars in order by top-speed, …
0
votes
1answer
48 views
Calling “Base-Getter” in Overriding Getter of Property
I have a base class "Parent" like this:
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Parent
{
private int parentVirtualInt …
0
votes
2answers
28 views
WPF C# how to create THIS binding in code?
I wonder, how to create this binding, since Line.X2 IS NOT dependency property! :(
<Line Y1="0" X1="0" Y2="0" Stroke="Blue" StrokeThickness="3" Margin="0 -2 0 -2" X2="{Binding …
1
vote
2answers
72 views
What’s the best approach for readonly property
Hi,
I'm using a model UserRepository->User
The Repository is used to Save and Load the User.
I want to be able to set the ID in the Repository, but I don't want it to be access by UI.
The User and …
0
votes
2answers
23 views
.Net Inherited Control Property Default
Hello fellows
Im trying to make a simple "ButtonPlus" control. the main idea is to inherit from the button control and add some default property values (such as font,color,padding...)
No matter how i …
3
votes
2answers
61 views
accessing a static property via COM
is it possible to access a static property of a COM object without creating an instance of the object?
my situation is this:
i have an unmanaged application (written in delphi). this application …
0
votes
1answer
58 views
Bind to a property of a parent element in wpf
Hello all,
'I want to bind the Height property of the RichTextBox to the Height Property of the GridView`s Row. How can I do that? I do not know how to get the Row's Height as I can not access the Row …
7
votes
8answers
254 views
C# Pass a property by reference
Is there anyway to pass the property of an Object by reference? I know I can pass the whole object but I want to specify a property of the object to set and check it's type so I know how to parse. …
0
votes
2answers
16 views
How do I set a property based on condition that a user has selected a feature in WIX?
I want to set a property to be used after the FeaturesDlg (the one with the
feature tree) , based on condition that an user selected a feature or
not. Is this possible?
I've declared a new property, …
1
vote
4answers
63 views
Instance initialization strategy in c#
For a class instance to work properly, some fields should be properly initialized, what's your strategy to initialize these field, what should be given through constructor, what should be given …
1
vote
3answers
90 views
Preferred way of defining properties in Python: property decorator or lambda?
Which is the preferred way of defining class properties in Python and why? Is it Ok to use both in one class?
@property
def total(self):
return self.field_1 + self.field_2
or
total = …
