@@ -501,7 +501,7 @@ public static String replaceAll(String src, String find, String replacement) {
501
501
* Windowing system constant.
502
502
* @since 3.5
503
503
*/
504
- @ Deprecated
504
+ @ Deprecated ( forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
505
505
public static final String WS_MOTIF = "motif" ;//$NON-NLS-1$
506
506
507
507
/**
@@ -514,14 +514,14 @@ public static String replaceAll(String src, String find, String replacement) {
514
514
* Windowing system constant.
515
515
* @since 3.5
516
516
*/
517
- @ Deprecated
517
+ @ Deprecated ( forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
518
518
public static final String WS_PHOTON = "photon" ;//$NON-NLS-1$
519
519
520
520
/**
521
521
* Windowing system constant.
522
522
* @since 3.5
523
523
*/
524
- @ Deprecated
524
+ @ Deprecated ( forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
525
525
public static final String WS_CARBON = "carbon" ;//$NON-NLS-1$
526
526
527
527
/**
@@ -534,6 +534,7 @@ public static String replaceAll(String src, String find, String replacement) {
534
534
* Windowing system constant.
535
535
* @since 3.5
536
536
*/
537
+ @ Deprecated (forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
537
538
public static final String WS_WPF = "wpf" ;//$NON-NLS-1$
538
539
539
540
/**
@@ -587,7 +588,7 @@ public static boolean isGtk() {
587
588
* @return <code>true</code> for motif platforms
588
589
* @since 3.5
589
590
*/
590
- @ Deprecated
591
+ @ Deprecated ( forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
591
592
public static boolean isMotif () {
592
593
final String ws = SWT .getPlatform ();
593
594
return WS_MOTIF .equals (ws );
@@ -598,7 +599,7 @@ public static boolean isMotif() {
598
599
* @return <code>true</code> for photon platforms
599
600
* @since 3.5
600
601
*/
601
- @ Deprecated
602
+ @ Deprecated ( forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
602
603
public static boolean isPhoton () {
603
604
final String ws = SWT .getPlatform ();
604
605
return WS_PHOTON .equals (ws );
@@ -609,7 +610,7 @@ public static boolean isPhoton() {
609
610
* @return <code>true</code> for carbon platforms
610
611
* @since 3.5
611
612
*/
612
- @ Deprecated
613
+ @ Deprecated ( forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
613
614
public static boolean isCarbon () {
614
615
final String ws = SWT .getPlatform ();
615
616
return WS_CARBON .equals (ws );
@@ -630,6 +631,7 @@ public static boolean isCocoa() {
630
631
* @return <code>true</code> for WPF
631
632
* @since 3.5
632
633
*/
634
+ @ Deprecated (forRemoval = true , since = "2025-03" ) // 2025-03 was added later for information purposes
633
635
public static boolean isWpf () {
634
636
final String ws = SWT .getPlatform ();
635
637
return WS_WPF .equals (ws );
0 commit comments