0
votes
3answers
56 views
Suppress deprecated import warning in Java
In Java, if you import a deprecated class:
import SomeDeprecatedClass;
You get this warning: The type SomeDeprecatedClass is deprecated
Is there a way to suppress this warning?
0
votes
2answers
68 views
Django deprecated tags / Beginner
The senior developer (and the only person experienced with Django in our company) has moved away and left us. Shortly after this (following his instructions) we pushed a site live onto a shared server …
1
vote
1answer
28 views
How can I know that a xaml is deprecated?
I was using the following xaml in wpf:
<Style TargetType="{x:Type Border}">
<Setter Property="BitmapEffect">
<Setter.Value>
<BitmapEffectGroup>
…
4
votes
10answers
298 views
Why is the <center> tag deprecated in HTML?
I am just curious as to why the <center> tag in HTML was deprecated.
The <center> was a simple way of quickly center-aligning blocks of text and images by encapsulating the container in a …
0
votes
6answers
122 views
Deprecate in Java 1.6
In Java 1.5, to deprecate a method you would:
@Deprecated int foo(int bar) {
}
Compiling this in Java 1.6 results in the following:
Syntax error, annotations are only
available if source …
0
votes
2answers
74 views
what has replaced UITableViewCell setText now that setText is deprecated?
iPhone OS 3.1.2, older program uses UITableViewCell.text, which is now deprecated. Does anyone know what the new Setter is supposed to be?
Thanks!
3
votes
3answers
88 views
Are @deprecated methods or classes in Java eventually removed? [closed]
Possible Duplicate:
When are API methods marked “deprecated” actually going to go away?
Do @deprecated methods in JDK eventually get removed? (I seem to remember there was a …
0
votes
1answer
119 views
Can I disable CheckStyle complaints for deprecated methods and classes?
I'm maintaining an API that has deprecated some public static fields.
CheckStyle complains loudly about these but I'd rather have it ignore them completely since I've dealt with the problem by …
0
votes
2answers
93 views
java date function which is not deprecated
i simply need to print the Date of the day on the console in this format: Day.Month.Year . Example: 03.10.09
Code:
GregorianCalendar c = new GregorianCalendar();
Date s = c.getTime();
…
0
votes
3answers
143 views
Why am I getting a deprecated warning in XCode
I am getting a warning about setText method when I am not even using it. Why does XCode display this warning message?
5
votes
4answers
95 views
How do I flag a function as being deprecated in an iPhone Objective C header file?
Hey guys,
Does any one know how to do this?
I'm guessing there's just some keyword I can stick after the function somewhere?
EDIT: I would like for a compiler warning to be generated should anyone …
1
vote
1answer
70 views
pboard types will be deprecated
According to NSPasteboard.h (line 294 in the standard Snow Leopard copy of the Xcode SDK) it states:
/* Use of pboard types should be replaced with use of UTIs.
Pboard types will be deprecated in a …
8
votes
4answers
719 views
Why Java Vector class is considered obsolete or deprecated?
Why Java Vector is considered a legacy class, obsolete or deprecated?
Its use isn't valid when working with concurrency?
And if I don't want to manually synchronize objects and just want to use a …
0
votes
2answers
206 views
How does one disable deprecated warnings in Flex 3?
I've recently started working with an application written using Adobe Flex 3. We're using several deprecated functions and unfortunately we can't remove these dependencies.
The documentation says to …
1
vote
3answers
224 views
Alternative to poseAsClass in Mac OS X 10.5 and higher?
Apple has deprecated NSObject's poseAsClass: method for OS X v10.5 and above. Is there another way to make class posing work?
