Abstract implementation requirements have changed

This commit is contained in:
Michael Becker 2019-09-06 19:52:32 -04:00
parent bae3d0dd82
commit a2ca866232
5 changed files with 29 additions and 51 deletions

View File

@ -299,19 +299,14 @@ namespace UniversalEditor.Editors.Contact
}
}
public override void Copy ()
public override void UpdateSelections()
{
throw new NotImplementedException ();
throw new NotImplementedException();
}
public override void Paste ()
protected override EditorSelection CreateSelectionInternal(object content)
{
throw new NotImplementedException ();
}
public override void Delete ()
{
throw new NotImplementedException ();
throw new NotImplementedException();
}
}
}

View File

@ -9,17 +9,14 @@ namespace UniversalEditor.Plugins.AddressBook.UserInterface.Editors.ContactGroup
{
}
public override void Copy ()
public override void UpdateSelections()
{
throw new NotImplementedException ();
throw new NotImplementedException();
}
public override void Paste ()
protected override EditorSelection CreateSelectionInternal(object content)
{
throw new NotImplementedException ();
}
public override void Delete ()
{
throw new NotImplementedException ();
throw new NotImplementedException();
}
}
}

View File

@ -6,19 +6,13 @@ namespace UniversalEditor.Editors.FamilyTree
{
public class FamilyTreeEditor : Editor
{
public override void Copy ()
public override void UpdateSelections()
{
throw new System.NotImplementedException ();
throw new NotImplementedException();
}
public override void Delete ()
protected override EditorSelection CreateSelectionInternal(object content)
{
throw new System.NotImplementedException ();
}
public override void Paste ()
{
throw new System.NotImplementedException ();
throw new NotImplementedException();
}
private static EditorReference _er = null;

View File

@ -42,25 +42,20 @@ namespace UniversalEditor.Editors.Multimedia.Picture
return _er;
}
public override void Copy()
{
throw new NotImplementedException();
}
public override void Delete()
{
throw new NotImplementedException();
}
public override void Paste()
{
throw new NotImplementedException();
}
protected override void OnObjectModelChanged(EventArgs e)
{
base.OnObjectModelChanged(e);
this.da.Picture = (this.ObjectModel as PictureObjectModel);
}
public override void UpdateSelections()
{
throw new NotImplementedException();
}
protected override EditorSelection CreateSelectionInternal(object content)
{
throw new NotImplementedException();
}
}
}

View File

@ -59,17 +59,14 @@ namespace UniversalEditor.Plugins.SoftwareDevelopment.UserInterface.Editors.Synt
Controls.Add (txt, new BoxLayout.Constraints (true, true));
}
public override void Copy ()
public override void UpdateSelections()
{
throw new NotImplementedException ();
throw new NotImplementedException();
}
public override void Paste ()
protected override EditorSelection CreateSelectionInternal(object content)
{
throw new NotImplementedException ();
}
public override void Delete ()
{
throw new NotImplementedException ();
throw new NotImplementedException();
}
}
}